0
How can one validate a form
in case an input is not filled
2 Respostas
0
best way is to put "required" in end of input tag..
<input type="text" name="name" required>
0
also you can use if conditions..
for example, if you are storing input's value in $a variable then you can use "if($a=0) else"