Hello everyone,
You helped me through an issue last week, and I am stuck again....
I need to have a user enter a teamname, pass that name to the database (verify username/password) and then return a form (with the name automatically filled in). Problem is that it's truncating when it hits special characters. How do i fix this?
here is how i pass to the form:
header("Location: [url]http://www..........php[/url]
teamname=".$teamname."");
And here is the call on the 2nd page:
Verify Team Name (check box):
<INPUT TYPE="checkbox" NAME="teamname" value="<?php echo $teamname ?>">
<b><?php echo $teamname ?></b>
How do i fix this to recognize special characters (e.g. anything typed)?
-Michael