<?phpecho 'Testing php', $var, $vog, ' is a pimp';?>
Please note these forums are mostly a testing ground for my SMF work and I don't really use them otherwise.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu<?phpecho 'Testing php', $var, $vog, ' is a pimp';?>
<?phpecho 'Testing php', $var, $vog, ' is a pimp';?>
<?phpecho '<pre><br/>';print_r($_SERVER['PATH_INFO']);// Open it up$url = explode('/', $_SERVER['PATH_INFO']);// Get ride of the junker.if($url[0] == '')
unset($url[0]);// Ok.. Split it again.foreach($url as $tempurl)
$urlnew[] = explode(',', $tempurl);// Finally get it out of here.foreach($urlnew as $urlout)
$_GET[$urlout[0]] = $urlout[1];// And get rid of the extras;unset($url, $tempurl, $urlnew, $urlout);echo 'GET Variables-->', print_r($_GET), echo '<br/>';if(isset($_GET['action']))
echo 'We are set<br/>';if(isset($_GET['action']) && $_GET['action'] == 'home')
echo 'We have it.';echo '</pre>';?>?>
Page created in 0.021 seconds with 15 queries.