Please send questions to
st10@humboldt.edu .
<html>
<!-- use_php.html
adapted from example from Ann Burroughs
adapted by: Sharon Tuttle
last modified: 11-07-06
-->
<head>
<title> HTML calling a .php </title>
</head>
<body>
<h2> HTML calling a .php </h2>
<form method="get"
action=
"http://redwood.humboldt.edu/~st10/welcome.php">
<table>
<tr>
<td> Enter your last name: </td>
<td> <input type="text" name="lastname" size="15" maxlength="15"> </td>
</tr>
<tr>
<td> Enter your age: </td>
<td> <input type="text" name="age" size="3" maxlength="2"> </td>
</tr>
</table>
<input type="submit" value="submit">
</form>
</body>
</head>