Page 1 of 1

php?ID=xx

Posted: Thu Jun 18, 2009 3:17 pm
by nonito
I am new to php and from an example I try to make a web page which contains html and php pages.
In the example the php page has a link to <a href="example.php?ID=10"> or <a href="example.php?recordID=20">.
The "ID´s" are text messages and become part of the page in a frame.
My problem is how do I have to make these ID´s (format?). because I cannot locate these ID´s in the example.
Thanks for your help.

Re: php?ID=xx

Posted: Thu Jun 18, 2009 5:12 pm
by pickle
I'm not sure what you mean here:
nonito wrote:The "ID´s" are text messages and become part of the page in a frame.
My problem is how do I have to make these ID´s (format?). because I cannot locate these ID´s in the example.
A link to example.php?id=10 will load example.php. In example.php, $_GET['id'] will equal 10.