how can i do, to if i leave a space in blank and send me an alert, and the i press OK, the form is cleaned, and i need to input again the name, and lastname... i mean, the form is cleared if i have a mistake, how can i do to not let be cleared in a mistake...sorry for my english -_-
@Zero0097 You can do that in PHP. If you check the form with PHP, you store the entries in PHP variables and they'll still be accessible after the form has been submitted, so then in the "value" attribute of each input, you have something like
if ( isset ( $first_name ) )
{ echo $first_name;
}
and then if the a value was entered for first name, it will stay there after the form has been submitted.
how can i do, to if i leave a space in blank and send me an alert, and the i press OK, the form is cleaned, and i need to input again the name, and lastname... i mean, the form is cleared if i have a mistake, how can i do to not let be cleared in a mistake...sorry for my english -_-
Zero0097 2 months ago in playlist Javascript
@Zero0097 You can do that in PHP. If you check the form with PHP, you store the entries in PHP variables and they'll still be accessible after the form has been submitted, so then in the "value" attribute of each input, you have something like
if ( isset ( $first_name ) )
{ echo $first_name;
}
and then if the a value was entered for first name, it will stay there after the form has been submitted.
asib12 2 months ago
@asib12 thanks, I'll see your PHP vids, it will be good a playlist for they, like JavaScript tuts.. see yaa
Zero0097 2 months ago
can you assign information retrieved from the forms to variables?
SantaClaus5545 10 months ago
nice man
D9rot 11 months ago
good job in this tutorial on events, but it would be better if I can hear you talk, it's too soft in this video =x
location9191 2 years ago
Umm, where's the first part? :(
zomgpro 3 years ago
Hmm, said it was uploaded. Lemme do it now.
asib12 3 years ago