1.html
Create your own computer virus warning<br> Enter: <form method="POST" action="2.php"> Name: <input type="text" name="name1"><br> Name: <input type="text" name="name2"><br> Adjective: <input type="text" name="adjective1"><br> Vowell: <input type="text" name="vowell1"><br> Vowell: <input type="text" name="vowell2"><br> Vowell: <input type="text" name="vowell3"><br> Vowell: <input type="text" name="vowell4"><br> <input type="submit" name="Submit"> </form>
2.php
<?php $name1 = $_REQUEST['name1']; $name2 = $_REQUEST['name2']; $adjective1 = $_REQUEST['adjective1']; $vowell1 = $_REQUEST['vowell1']; $vowell2 = $_REQUEST['vowell2']; $vowell3 = $_REQUEST['vowell3']; $vowell4 = $_REQUEST['vowell4']; { echo "Recently the $name1 computer virus has gone rampent. There is"; echo "nothing you can do to stop the $vowell1 of the $adjective1 $name1"; echo "computer virus. If you get the $name1 computer virus I would recommend"; echo "you to $vowell2 asap. If this is not an option I would tell you"; echo "to take your computer and $vowell3 it $vowell4 your $name2"; exit; } ?>
Any ideas are more than welcome!