0
Post an eg of php validation form
2 Antworten
+ 4
Many ways to do this. Most php frameworks (laravel or codeigniter) have form validation baked into it so you don’t have to reinvent the wheel. One way to make you own validation is to make a variable called $errors =0; check the post for what you want required if(! Isset($_POST[‘name’]){$error = 1; $message[] = ‘name field is required’;
Then at the end look to see if error is 1 and return the error message to the view. There’s a million different alternatives. Just google it.
+ 1
give me a full example