Jump to content

[SOLVED] URL, PHP and databases


transparencia

Recommended Posts

This is my table:

 

id

titles

1

TitleA

2

TitleB

3

TitleC

 

I want to show the title text for the URL of a page. Something like: www.website.com/titleA.html

 

Also, within that page, www.website.com/titleA.html, I want to add a link to the next page, www.website.com/titleB.html.

 

How can I do this?

Link to comment
https://forums.phpfreaks.com/topic/181887-solved-url-php-and-databases/
Share on other sites

You use the primary key to identify the page i.e

 

<a href="page.php?id=1">A</a>

<a href="page.php?id=2">B</a>

<a href="page.php?id=3">C</a>

 

When a user lands on page.php you get the database record to display i.e

// page.php
$result = mysql_query("SELECT * FROM tablename WHERE id='".mysql_real_escape_string($_GET['id'])."'");
$row = mysql_fetch_assoc($result);
print "You are on page: ".$row['title'];

To display the links select the records from the database and loop through them

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.