if(!empty($nom,)) {
how can I check for the $nom and an other variable like $email
THanks
if (!empty($nom) && !empty($email)) {
Diego
Yah Thats work Thanks !