Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.