if (isset($page)) {
include $$_GET['page'];
} else {
$page = $home;
include $page;
}

would that be right?
or should i use

if (isset($page)) {
include $$_GET['page'];
} else {
include $home;
}

hopefully that's right.  if so, pretty good for a n00b



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to