Say you call the uri
view.php/store/this/data
You can then get the uri using
$qs = $_SERVER['PHP_SELF'];
Then find the occurence of the second /
$position = strpos($qs, '/', 1);
Then get everything from $position onwards
$vars = substr($qs, $position);
Trim any / from both ends
$vars = trim($vars, '/');
And break it into an array
$var_array = explode($vars, '/');
And output the results
var_export($var_array);
This should then output:
array ( 0 => 'store', 1 => 'this', 2 => 'data', )
hope that helps! adam