View Single Post
  #2 (permalink)  
Old 06-19-05, 10:39 PM
jordie jordie is offline
Wannabe Coder
 
Join Date: Jun 2005
Posts: 179
Thanks: 0
Thanked 0 Times in 0 Posts
you could just put this in ur .htaccess file for the changing of url:

Code:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*)/[0-9]* $1.php?id=$2
Haven't test that myself, but you could also be specific and try:
Code:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^Example/[0-9]* Example.php?id=$2
__________________
Jordie Bodlay
php, mysql, postgres
css, xhtml
graphics, design
email me: jb2386@hotmail.com for any programming needs.
Reply With Quote