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>