Forums
(@takah)
12 years, 7 months ago
This code was wrong. if( empty( $_POST[$fieldName] ) ) continue;
This is better. if( !isset( $_POST[$fieldName] ) ) continue;