Error is (according to an error_log file):
PHP Parse error: syntax error, unexpected '{' in /process.php on line 1
And the supposedly offending line is in here. These are the first 4 lines in process.php
<?php
if ((isset($_POST['name'])) && (strlen(trim($_POST['name'])) > 0)) {
$name = stripslashes(strip_tags($_POST['name']));
} else {$name = 'No name entered';}
Everything makes sense...but yet it has an error...im confused :S