I will try to make this clear so you guys can understand. I made a php page. Example. website.com/digitalpoint.php Inside the page it shows this page, website.com/search.php?subject=digitalpoint, it works fine, but when you want to go to page 2, it adds the "?page=2subject&=digitalpoint" after website.com/digitalpoint.php Is there a way to fix that, a command code so it would be based off of / ? Any suggestions?
I guess your script is working the way it should be On page 2, it looks like http://website.com/digitalpoint.php?page=2subject&=digitalpoint "?" mark symbol is there because the text after that are URL parameters IF you replace "?" with "/" symbol, the visitor wont see page 2 [this is how it would look] http://website.com/digitalpoint.php/page=2subject&=digitalpoint But what is the actual problem. I mean why do you need to take off that "?" symbol?