Re: Blank Page?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



>switch($_GET[page])
>  {
>      connect();
>      case "about" :

Put the connect() before the switch (and keep error_reporting(E_ALL)
at the top):

connect();
switch($_GET[page])
{
    case "about" :
    ....
}

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


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux