global $array = array( "0" => "hostname", "1" => "username", "2" => "password" );
function database()
{
$dbase = mysql_pconnect( $array[0], $array[1], $array[2] )or die( mysql_error());
if( connection_status() != 1 ) {
echo "connection failed";
}
}
call_user_func( "database" );
-- Jason Gerfen jason.gerfen@xxxxxxxxxxxx
"And remember... If the ladies don't find you handsome, they should at least find you handy..." ~The Red Green show
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php