Forum Moderators: coopster
You should be able to parse out the pieces you need from one of PHP's $_SERVER [php.net]superglobal variables.
<?PHP
$keys = explode("-",str_replace(array("http://",".php"),"",$_SERVER['SCRIPT_URI']));
echo $keys[0]."<br>".$keys[1];?>
which requires the page exist... whereas i just need something that allows the user to type in www.mydomain.com/absolutelyanythinghere and then i suppose to be redirected to an index.php where 'absolutelyanythinghere' can be echoed onto the page...