I tried doing the following it still deosnt work

<?php include('global1.inc');
$USER=($HTTP_POST_VARS["USER"]);
$PASSWORD=($HTTP_POST_VARS["PASSWORD"]);
$strconnectionuser=mysql_connect("123.345.567.789","$USER");

if ($strconnectionuser=="Resource id #1")
{
header("Location: http://123.345.567.789/frame_main.htm";);
}
  else
{
header("Location: http://123.345.567.789/notlogged.htm";); 
} 
?>

How do i check for a valid connection??

He;p is appreciated,

regards,
Harpreet Kaur
Software Developer
Crispin Corporations Inc.


-----Original Message-----
From: Indioblanco [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 21, 2001 9:59 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Authenticate problem


Two things right off the top:
1. You won't execute the header functions if you exit (die) the script.
2. Your header functions won't work if you allow warnings to print..

Try testing for a valid connection, then passing the error string into 
the redirection url of a header call if it returns false and then exit.

-ib



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to