I am doing a form on my site and then the contents of the form is mailed to me.
I have the form all done and it is emailed to me ok with all the information that i require then code i have so far is.
<?php
$message = $_GET['name']. "\n" .$_GET['address1']. "\n" .$_GET['address2']. "\n" .$_GET['address3'].
"\n" .$_GET['address4']. "\n" .$_GET['posttown']. "\n" .$_GET['county']. "\n" .$_GET['postcode'].
"\n" .$_GET['telephone']. "\n" .$_GET['email'].
"\n" .$_GET['ebayid']. "\n" .$_GET['orderno']. "\n" .$_GET['item']. "\n" .$_GET['fault']. "\n" .$_GET['colday'];
mail("cdascasdc@hotmail.com", "Return form" , $message);
?>
what am having difficulty on is finding a way where i can
put the information that is emailed to me in table form with row headers. any help will be great.