$field = array('$fname',
'$login',
'$password',
'$area',
'$phonemid',
'$phonelast',
'$address',
'$city',
'$country',
'$website_title',
'$website_url');
if($field[""] == "") {
print("You did not fill out a field, please go back and fill out all the fields, thank you.");
} else {
//do query
now I thought just $field was gonna work and i had no luck.
do I have to use count?
$fieldvalid = count($field);
//then do
if($fieldvalid == "") {//etc
any help is appreciated.
thank you 🙂