Some basic code but with a number of errors.
What am I missing here?
It works fine without the table code but I am intrigued with what is wrong here.
Keith
What am I missing here?
It works fine without the table code but I am intrigued with what is wrong here.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<title>Title</title>
</head>
<body>
<form method='post' action='script.pl'>
<table>
<input type='hidden' name='call' value='resend'>
<tr><td>Your Name</td><td><input type='text' name='CONTACT' value=''></td></tr>
<tr><td>Email Address</td><td><input type='text' name='EMAIL' value=''></td></tr>
<tr><td colspan='2'><input type='submit' NAME='submit' value='Please Email My Log in Details'></td></tr>
</table>
</form>
</body>
</html>
Keith