
mister1337
New User
Feb 10, 2009, 1:12 PM
Post #1 of 4
(4226 views)
|
Accepts forum posts
|
Can't Post
|
|
I have written an HTML document that is stored on a server that is a form to submit. I need to figure out how to write a perl script that accepts the input to the forum by way of a Query_String. <html> <title> Check</title> <body> <table border="0" Cellpadding=4 align="center"><td></td><td><font color="orange" size="+3"> Durn Good Recipie</font> </td> <tr> <!--Had to call the image here I named it food.bmp--!> <td ><img src="food.bmp"></td> <td><table border="4" Bordercolor="white" cellpadding="4"><tr><td><pre> OVER 9000 KALORIEZ!!!!!!!!!!!!!! vegeta WHAT DOES THE SCOUTER SAY ABOUT THOZE KALORIEZ?????? OVER 9000!!!!!!!!!!!!!! </pre> </td></tr> </table> </table><center> <!-- Made a new table here to keep things in line--!> <table border="0"> <td>How well did you did with this recipe?</td> <tr> <td align=right> <br> <!-- tells the form where to go--!> <form name="post" action=<!--THis is where I need to put the query string for the perl script--!> method="post"> Your Name: <input type="Text" name="name"> <br> <br> Your Phone number: <input type="text" name="phone"> <br> <br> Overall rating of this recipe: <input type="text" name="rating"> <br> <tr> <td> Should we put you on our mailing list? <input type="radio" name="mailing" value="yes">Yes <input type="radio" name="mailing" value"no">No <br> Sign me up for the magazine <input type="checkbox" name="mag"> </td> <tr> <td> <input type="submit" value="Submit"></td> </table> </form> <hr> </body> </html>
|