hi guys,
I installed xampp this morning which seemed to go fine other than Windows firewall blocking Apache initially but that is now resolved. My problem comes when I try to run a simple form that should output the data to an email all that happens when I preview in browser and click the submit button is the browser then shows the plain text php code.
<?
$name = $REQUEST['name'];
$email = $REQUEST['email'] ;
$comments = $_REQUEST['comments'] ;
mail( "email goes here", "Feedback Form Results",
$message, "From: £name, $email" );
header( "Location: Web address for redirect goes here" );
?>
So my question is am I missing something in the setup that is making this happen?
Thanks for any help in advance
Mytutorisfat x