Re: Dynamic Link/Content with PHP
- From: Carl <_Nospam_@xxxxxxxxxxxx>
- Date: Wed, 27 Jul 2005 19:52:28 GMT
Ben Allen wrote:
Hi,
I've created a mySQL database with the fields id, title and content. 'ID' is a unique field. Any ideas on how I can use PHP to generate a list of the titles which are links. When you click on a link you are taken to a page with the content held in the database. I'm guessing the generated links would be something like /page.PHP?pageid=x based on the id, that's if this script is possible at all.
Sorry for being such a newbie, but I guess we all have to start somewhere.
Thanks, Ben
Ben,
This is exactly what php does, and you seem to be off to a good start. Have you tried writing any code yet or do you have any more specific questions?
If you are just starting out, I would suggest first writing a webpage which simply lists all the items in the database. If there are many items, you might consider splitting them up into usable chunks of 10-20 per page.
http://www.php.net/manual/en/index.php
http://www.php.net/manual/en/ref.mysql.php
Once that is working, turn the list into a list of links, your proposed url format looks fine, though I wouldn't name a page 'page.php', how about 'display.php'.
http://idocs.com/tags/linking/_A.html
http://www.php.net/variables.external
Once you have completed those first two steps you should write the display.php page, which retrieves the item details from the database using the id you passed in the url (this can be retrieved from the $_GET array in php.
http://www.php.net/variables.external
http://www.php.net/manual/en/reserved.variables.php#reserved.variables.get
.
- Follow-Ups:
- Re: Dynamic Link/Content with PHP
- From: Ben Allen
- Re: Dynamic Link/Content with PHP
- References:
- Dynamic Link/Content with PHP
- From: Ben Allen
- Dynamic Link/Content with PHP
- Prev by Date: Re: Email URL to plaintext receivers - URL being truncated (Using PHP Mailer)
- Next by Date: Re: Interrupt session at configed time
- Previous by thread: Dynamic Link/Content with PHP
- Next by thread: Re: Dynamic Link/Content with PHP
- Index(es):
Relevant Pages
|