nadeemshafi9 Posted August 6, 2008 Share Posted August 6, 2008 if i turn on mod rewrite and it converts all my urls variables to forward slashed variables will that effect teh way in wich i use $_get[] ?, i mean will i have to read the url and split it or somthing or can i still use get Thanks Quote Link to comment https://forums.phpfreaks.com/topic/118467-mod-rewrite/ Share on other sites More sharing options...
therealwesfoster Posted August 6, 2008 Share Posted August 6, 2008 It still forwards to the regular php script, so you can still use $_GET. Example: site.com/topic-(.*?)/reply-(.*?) site.com/loadReply.php?t=$1&r=$2 So in loadReply.php you can still use $_GET['t'] and $_GET['r'] Wes Quote Link to comment https://forums.phpfreaks.com/topic/118467-mod-rewrite/#findComment-609967 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.