Right, you gotta use Javascript to make sure nobody sticks any mathematical symbols in:
First, give the input an id property, ie:
<input type="text" name="count" id="count" etc...>
Next add and id property to the form, ie:
<form action="index.php" id="countform" etc...>
then stick the following javascript into the page:
<script language="Javascript">
function checkform(){
var inputid = document.getElementById('count').value
if(inputid.indexOf("+")!=-1 || inputid.indexOf("-")!=-1 || inputid.indexOf("*")!=-1 || inputid.indexOf("/")!=-1){
alert("You must not use any mathematical characters!");
} else {
document.getElementById('countform').submit();
}
}
</script>
This should do the job.