<html>
<head>
<title>Check</title>
</head>
<body>
<center><font size = "7" face = "Still Time" color = "black"> MadLib Compiled
<hr>
<br>
<?php
$first = "Once upon a time, there was someone named ";
$second = "You may ask how old he was, well here it is ";
$third = " used to impress everyone by his knowledge of ";
$fourth = " was one of his idols, he told him to go rob a bank";
$fifth = "So, that was what he did, he ";
$sixth = " robbed the bank";
$seventh = "After the police were after him, he ran away with 17 dollars to ";
echo "$first $HTTP_POST_VARS['name']<br>";
echo "$second $HTTP_POST_VARS['age']<br>";
echo "$HTTP_POST_VARS['name'] $third $HTTP_POST_VARS['language']<br>";
echo "$HTTP_POST_VARS['whomore'] $fourth<br>";
echo "$fifth $HTTP_POST_VARS['action'] $sixth<br>";
echo "$seventh $HTTP_POST_VARS['place']<br>";
?>
</body>
</html>
would this work??? its just basically getting code from a form and outputting it. ANY suggestions okay.