If I use mod-rewrite to change a url like this:
http://www.mysite.com/page.php?title=my-name-is-john
to
http://www.mysite.com/page/my-name-is-john
and if the page.php file contains a script that relies on parameters passed through the url like:
$_GET['title'];
Then will that script still work after the mod-rewrite has been implemented?