Ok i have downloaded and installed a really basic and simple PHP form from my webhosting company and it works fine...
<body>
<FORM method=post action="sendmail.php">
Email: <INPUT name="email" type="text"><br>
Message:<br>
<TEXTAREA name="message">
</textarea><br>
<input type=submit>
</FORM>
</body>
</html>
php...
<?php
mail("myemail@address.co.uk", "Feedback Form results", $_REQUEST[message], "From: $_REQUEST[email]", "-f".$_REQUEST[email]);
header( "Location: http://www.mywebsite.co.uk/response" );
?>
What i want to do is add an extra text field for the persons name, but whenever i try and add a simple text field for the name it stops working properly...any help greatly appreciated.
Matt