How do you add an extra field to the contact form to include a customers telephone number?

Code: Select all
<tr>
<td><?php echo $entry_name; ?><br />
<input type="text" name="name" value="<?php echo $name; ?>" />
<?php if ($error_name) { ?>
<span class="error"><?php echo $error_name; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><?php echo $entry_email; ?><br />
<input type="text" name="email" value="<?php echo $email; ?>" />
<?php if ($error_email) { ?>
<span class="error"><?php echo $error_email; ?></span>
<?php } ?></td>
</tr>
Code: Select all
<tr>
<td>First Name:<br />
<input type="text" name="name" value="" />
</td>
</tr>
<tr>
<td>Telephone:<br />
<input type="text" name="telephone" value="" />
</td>
</tr>
<tr>
<td>E-Mail Address:<br />
<input type="text" name="email" value="" />
</td>
Users browsing this forum: No registered users and 8 guests