[PHP] How to access $_GET while using mod_rewrite

2004-02-16 Thread Merlin
Hi there, I am using mod_rewrite which makes it impossible to use the $_GET function. However, it should be possible to do the same with a function. I figured out how to get the parameter string out of the url, now I am stuck in splitting those values into associated array elements. Here is

RE: [PHP] How to access $_GET while using mod_rewrite

2004-02-16 Thread Ford, Mike [LSS]
On 16 February 2004 15:19, Merlin wrote: Hi there, I am using mod_rewrite which makes it impossible to use the $_GET function. However, it should be possible to do the same with a function. I figured out how to get the parameter string out of the url, now I am stuck in splitting

Re: [PHP] How to access $_GET while using mod_rewrite

2004-02-16 Thread Chris Hayes
I am using mod_rewrite which makes it impossible to use the $_GET function. that depends... if you would translate the fake url www.yoursite.org/par1/val1/parameter2/value2 to www.yoursite.org?page.php?par1=val1parameter2=value2 you are ready. Check the net for quite some examples. Here is