On Wednesday 14 April 2004 07:12 pm, Andy B wrote:
> function Connect($host, $mysqluser, $mysqlpwd){
> $link=mysql_connect($host, $mysqluser, $mysqlpwd)
> if(!$link){ return false; }
> else { return $link; }}
> should i keep it like this or is it better for the function itself to deal
> with error handling at the same time? i.e. should it return an error
> message/number or something of that sort or give the returned resource over
> to some other function that deals with errors....
>
> it works just fine the way it is just trying to come up with some ideas
> that would add more functionality to it if possible...

Why reinvent the wheel?

http://pear.php.net/packages.php?catpid=7&catname=Database


-- 
Greg Donald
[EMAIL PROTECTED]

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

Reply via email to