Quinton1337 Posted November 29, 2007 Share Posted November 29, 2007 My teacher gave us a php problem... and seeing as how I'm getting angry and don't know what I'm doing I need your HELP. These are what I have So Far. If you can (somehow) see the problem, PLEASE post it! DegRad.html _________________________________________________________ <html> <body> <h4>Tizag Art Supply Order Form</h4> <form action="DegRad_R1.php" method="POST"> Convert degrees to radiants <input name="rad" type="Text"/> <input type="submit"/> <form action="DegRad_R2.php" method="POST"> Convert radiants into degrees <input name="deg" type="Text"/> <input type="submit"/> </form> </body> </html> ______________________________________________________________ DegRad_R1.php ______________________________________________________________ <html> <body> <?php $x= $_POST['rad']; $z=rad2deg($x); echo "The Radien is " .$x. "<br/>"; ?> </body> </html> ___________________________________________________________ DegRad_R2.php _____________________________________________________________ <html> <body> <?php $y= $_Post['deg']; $w=deg2rad($y); echo "The Degree is " .$w. "<br/>"; ?> </body> </html> _____________________________________________________________ Please Tell me the problem right away... my class is 4th period. It's 11:48am and my class is at 1:30pm! Thank you all who help. Quote Link to comment Share on other sites More sharing options...
adam291086 Posted November 29, 2007 Share Posted November 29, 2007 What are you trying to do? Quote Link to comment Share on other sites More sharing options...
trq Posted November 29, 2007 Share Posted November 29, 2007 And more sepcifically, what is the problem? One issue, replace... $y= $_Post['deg']; with $y= $_POST['deg']; Quote Link to comment Share on other sites More sharing options...
revraz Posted November 29, 2007 Share Posted November 29, 2007 Gotta love it. Please Tell me the problem right away... my class is 4th period. It's 11:48am and my class is at 1:30pm! Quote Link to comment Share on other sites More sharing options...
rlindauer Posted November 29, 2007 Share Posted November 29, 2007 Do I get the grade if I do your homework for you? Just let the teacher know where to send that gold star. Thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.