Click to See Complete Forum and Search --> : forms not showing up in my browser


marteau
06-03-2007, 07:27 PM
I'm trying to make a php calculator but my form isn't showing up in my browser, I have IE6 and the new Mozilla but my text areas I code won't show up. Here is my code:

<html>
<head>
<title>
Calculator
</title>
</head>

<body>
<center>

<table width="750" border="5" align="left">
<tr>
<td>
<form action="functions.php" method="get">
First Number:<imput type="text" name="num1" value"first"><br>
Second Number:<imput type="text" name="num2" value second"><br>
<br />
Method<br />
<br>
<imput type="radio" name="mult" value="multiply"> Multiply<br>
<imput type="radio" name="div" value="divide"> Divide<br>
<imput type="radio" name="add" value="addi"> Addition<br>
<imput type="radio" name="sub" value="subtract"> Subtraction<br>
<imput type="submit"><br>
</form>
</td>
</tr>
</table>
</center>
</body>
</html>

dagon
06-03-2007, 07:33 PM
its INPUT not IMPUT

marteau
06-03-2007, 07:41 PM
its INPUT not IMPUT lol thanks I'm such a newb

bradgrafelman
06-03-2007, 09:38 PM
Don't forget to mark this thread resolved.