View Single Post
Old 08-18-2012, 03:20 PM   #1 (permalink)
ramtindow
The Visitor
 
Join Date: Aug 2012
Posts: 2
Thanks: 0
ramtindow is on a distinguished road
Default mod_rewrite how to get title from sql table in url

hello, pleaaase help me!
I have a php file "page.php" witch it gives the variable "id" from the url and shows a record WHERE id=$_GET['id'] .

I want to replace urls like "example.com/books/page.php?id=$id" (where $id can be anything numeric) with sth like "example.com/books/$id/title/"

where title and id are columns of sql table.

I want to know what to write in .htaccess file and how it gets the title from sql and writes it in front of $id in the url.

also I would like to titles Spaces be replaced by Dash sign.


my table is like :

id | title |
1 | an example |

witch then we should be able to use url "example.com/books/1/an-example/" instead of "example.com/books/page.php?id=1" .

Thanks a lot!
ramtindow is offline  
Reply With Quote