<html>
<head>
<title>Perv!</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
Hi <?php echo"$YourName"; ?> <br>
You like the word <?php echo"$FavoriteWord"; ?> <br>
You oughta be ashamed of yourself!
</body>
</html>
This is my current code. All it does is shows
Hi
You like the word
You oughta be ashamed of yourself!
thats it, If I run the php info test it shows the details of php, but I really don;t understand any of it.
Thanks for your help🙂
Etinfall
Oh Yeah, here is the form code that corresponds to the bad_words page
<html>
<head>
<title>My Form</title>
</head>
<body>
_<form action="bad_words.php" method=post>
My name is:
<br> <input type="text" name="$YourName">
<p> My favorite dirty word is:
<br><input type="text" name="$FavoriteWord">
<p>
<input type="submit" name="submit" value="Enter My Data!">
</form>
</body>
</html>