Hi,
If got the next piece of code:
echo "\n<input type=\"hidden\" Name=\"id\" Value=\"" . $id . "\">";
The page is called like
pagename.php?id=10
When I use phpinfo()
Is displays that id = 10 (_GET["id"] 10)
But I don't have any clue how to get the value, normally i just called $id, but it doesn't here. Any suggestions?
Gabriel.