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