Hi I'm trying to build a stats page, and I'm having difficulty with something:
I want to change anything that comes up as:
/galleries.php?gallery=11&galleryName=new gallery
to this
/galleries.php - new gallery
This is the code I had:
if($_SERVER[REQUEST_URI] == "/galleries.php?gallery=$imagecatID&galleryname=$imagecatName") {
$_SERVER[REQUEST_URI] = "/galleries.php - $imagecatName";
}
It doesn't work, is there a better way that I should be doing this, like a "like" statement or something?