I have been looking at the contents of various variables while trying to uniquely identify the current page,
eg:
PHP Code:
<?php
echo '$current_page_base = '. $current_page_base.'<br />';
echo '$current_page = '. $current_page.'<br />';
echo '$_SERVER[\'REQUEST_URI\'] = '. $_SERVER['REQUEST_URI'].'<br />';
echo '$_GET[\'id\'] = ' . $_GET['id'].'<br />';
echo '$_GET[\'page\'] = ' . $_GET['page'].'<br />';
echo '$cPath = ' . $cPath.'<br />';
*/?>
$_GET['id'] and $_GET['page'] are always empty, what am I missing?
thanks
Steve