Hi Greg, Thank-you for responding.
The data is being sent by POST to a PHP script for processing.
It's the usual Name, address, email etc. I did look at
http://uk2.php.net/manual/en/function.mail.php and saw
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
etc.
That's just what I want but how do I get the data from the form into the <td> </td>s
$message .= 'Name: '.$_POST['name']."\n\n";
$message .= 'Address: '.$_POST['address1']."\n\n";
$message .= 'Address: '.$_POST['address2']."\n\n";
$message .= 'City: '.$_POST['city']."\n\n";
etc.
Thank-you again for your time. Talbot