<input type=hidden name=name value=".$_GET['name'].">
Anything wrong with that? If i echo $_GET['name']; it shows the right info however in that form above it will not work.
Any ideas?
Thanks
Anthony
Anything wrong with this
Moderator: General Moderators
-
pinehead18
- Forum Contributor
- Posts: 329
- Joined: Thu Jul 31, 2003 9:20 pm
- Bill H
- DevNet Resident
- Posts: 1136
- Joined: Sat Jun 01, 2002 10:16 am
- Location: San Diego CA
- Contact:
Code: Select all
"<input type=hidden name=name value='" . $_GETї'name'] . "'>"Notice the quotes. The value probably needs to be quoted.