I need to pass 3 variables with a URL but using slashes. So for example I would use this URL:
http://www.example.com/variable1/variable2/variable3
I have thi
You might find it easier to grab the parameters in the .php file, via:
$pathinfo = isset($_SERVER['PATH_INFO'])
? $_SERVER['PATH_INFO']
: $_SERVER['REDIRECT_URL'];
$params = preg_split('|/|', $pathinfo, -1, PREG_SPLIT_NO_EMPTY);
echo "";
print_r($params);
So calling the script with this:
http://www.example.com/variable1/variable2/variable3
would return:
Array
(
[0] => variable1
[1] => variable2
[2] => variable3
)
This will work for both:
http://www.example.com/variable1/variable2/variable3 and http://www.example.com/process.php/variable1/variable2/variable3