don"t show error messages. how?
am 19.04.2002 16:13:20 von Jules Alberts
hello everybody,
i'm creating a little login screen to connect from PHP to postgresel
7.2 with adodb. the key part it looks like this:
include_once('adodb/adodb.inc.php');
$c=ADONewConnection('postgres7');
if ($c->PConnect('myserver',$id,$pwd,'mydb')) {
youreCool();
} else {
tryAgain();
}
this works OK, only when login fails (incorrect user ID, password), i
just want tryAgain() to run, without any errormessages. that's the
problem, PConnect() will give an errormessage if it fails, it generates
html like
your connection has failed blah blah
user ID ___________
password ___________
how can i suppress the message? with adodb? from within PHP?
TIA for any pointers / help
--
Jules Alberts
---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster
Re: don"t show error messages. how?
am 19.04.2002 16:23:16 von Timothy_maguire
Place a '@' before the function.
$c=@ADONewConnection('postgres7');
Tim.
Timothy P. Maguire
Web Developer II
Harte-Hanks
978 436 3325
"Jules Alberts"
limburg.nl> cc:
Sent by: Subject: don't show error messages. how?
pgsql-php-owner@postgresql
.org
04/19/2002 10:13 AM
Please respond to
jules.alberts
hello everybody,
i'm creating a little login screen to connect from PHP to postgresel
7.2 with adodb. the key part it looks like this:
include_once('adodb/adodb.inc.php');
$c=ADONewConnection('postgres7');
if ($c->PConnect('myserver',$id,$pwd,'mydb')) {
youreCool();
} else {
tryAgain();
}
this works OK, only when login fails (incorrect user ID, password), i
just want tryAgain() to run, without any errormessages. that's the
problem, PConnect() will give an errormessage if it fails, it generates
html like
your connection has failed blah blah
user ID ___________
password ___________
how can i suppress the message? with adodb? from within PHP?
TIA for any pointers / help
--
Jules Alberts
---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster
---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)
Re: don"t show error messages. how?
am 19.04.2002 18:39:55 von Chadwick Rolfs
The @ symbol represses errors... I see someone already suggested that.
You also have the option of capturing this error, for debugging. Is that
what you want to do? Yet another option is to turn off errors entirely
externally, then you only have the logs to deal with... a simple tail
command could get you debugging info, if necessary.
hth
On Fri, 19 Apr 2002, Jules Alberts wrote:
> hello everybody,
>
> i'm creating a little login screen to connect from PHP to postgresel
> 7.2 with adodb. the key part it looks like this:
>
> include_once('adodb/adodb.inc.php');
> $c=ADONewConnection('postgres7');
> if ($c->PConnect('myserver',$id,$pwd,'mydb')) {
> youreCool();
> } else {
> tryAgain();
> }
>
> this works OK, only when login fails (incorrect user ID, password), i
> just want tryAgain() to run, without any errormessages. that's the
> problem, PConnect() will give an errormessage if it fails, it generates
> html like
>
> your connection has failed blah blah
> user ID ___________
> password ___________
>
> how can i suppress the message? with adodb? from within PHP?
>
> TIA for any pointers / help
>
> --
> Jules Alberts
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>
Chadwick Rolfs - cmr@gis.net
Cleveland State University - Student
Music Major - The Holden Arboretum Volunteer
Computer Programmer - Student Employee
--*I finally found powdered water;
I just can't figure out what to add to it*--
---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)