form Validation white page not showing errors
- by Jess McKenzie
In the example below I am wanting to do all of the 'safety' checks on the $_POST variables but it seems when I click submit I get a white page why? I am wanting it to show the errors etc
Form Process:
/* check if the form is submitted */
if (isset($_POST['submitButton'])) {
$fullName = $_POST['fullname'];
…