I've never worked with php before, and not really sure why its not working.
When I fill in the form and submit it, the only thing that displays is:
Welcome .
Why isn't the name displayed?
My process.php code:
CODE
<html>
<body>
Welcome <?php echo $_GET["name"]; ?>.<br />
</body>
</html>
<body>
Welcome <?php echo $_GET["name"]; ?>.<br />
</body>
</html>
My index.html code:
CODE
<html>
<body>
<form method="get" action="process.php">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td> Please fill in the form below </td>
</tr>
<tr valign="top">
<td> Name </td>
<td> <input type="text" name="name" size="20" maxlength="100" /> </td>
</tr>
</table>
</form>
</body>
</html>
<body>
<form method="get" action="process.php">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td> Please fill in the form below </td>
</tr>
<tr valign="top">
<td> Name </td>
<td> <input type="text" name="name" size="20" maxlength="100" /> </td>
</tr>
</table>
</form>
</body>
</html>
Thanks
