- Impact
- 7
Okay if you use a simple php thing like this
And somone puts in a code it changes to the html code they put in to a certain degree...if somone could help me so I can make it so the code they put in is exactly that I would be thankful, please
-Coolprogram
PHP:
<html>
<body>
<form action="w/e.php" method="POST">
Enter The Code Here <input type="text" name="what">
<input type="submit" />
</form>
</body>
</html>
<html>
<body>
Here is what your code did. <?php echo $_POST["what"]; ?>.<br />
</body>
</html>
-Coolprogram






