Is there a way to have all of the variables on a page echoed?
Thanks, Travis
Try:
while (list($key,$val) = each ($GLOBALS)) { echo "$key = $val<BR>"; }
Max