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.
php?ID=xx
Moderator: General Moderators
Re: php?ID=xx
I'm not sure what you mean here:
A link to example.php?id=10 will load example.php. In example.php, $_GET['id'] will equal 10.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.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.