tippytarka
Programmer
i'm trying to modify the validation of my registration form to stop users from entering spaces and blank info. can you help? here's my script...
cheers
Code:
if (
$username_check == "" &&
$passwd == "" &&
$email_check == ""
) {
$all_fields_empty ="register for free";
return $all_fields_empty;
cheers