I have a form for your name and when they click submit, there name is displayed in a list and the name is put in a database. But everyone seems to want to use html to mess up the site so how do you make it so what they type in is only text stuff and not html?
A very simple form:
Code:
<center>
<form action="index.php" method="POST">
<font color="white">Name </font> <input type="text" name="name"/>
<input type="submit" value="Click!" />
</form>
</center>