Re: [PHP] Re: catch the error

2009-02-26 Thread PJ
Ashley Sheridan wrote: > On Thu, 2009-02-26 at 14:15 -0500, PJ wrote: > >> Ashley Sheridan wrote: >> >>> On Thu, 2009-02-26 at 13:56 -0500, PJ wrote: >>> >>> Ashley Sheridan wrote: > On Thu, 2009-02-26 at 13:34 -0500, Darryle Steplight wrote: >

Re: [PHP] Re: catch the error

2009-02-26 Thread PJ
Ashley Sheridan wrote: > On Thu, 2009-02-26 at 13:56 -0500, PJ wrote: > >> Ashley Sheridan wrote: >> >>> On Thu, 2009-02-26 at 13:34 -0500, Darryle Steplight wrote: >>> >>> Hi PJ, $db_host = 'biggie'; $db_user = 'root'; $db_pass = 'gu...@#$'; $db_name =

Re: [PHP] Re: catch the error

2009-02-26 Thread PJ
Here's the working code... Error performing 3st query: " . mysql_error() . ""); } echo $sql1; echo ""; echo $db_select; exit(); ?> This works fine either as is or using the include... :-) 9el wrote: > But the question is PJ, have you got it out of errors yet? :) > > www.twitter.com/nine_

Re: [PHP] Re: catch the error

2009-02-26 Thread PJ
Ashley Sheridan wrote: > On Thu, 2009-02-26 at 13:34 -0500, Darryle Steplight wrote: > >> Hi PJ, >>$db_host = 'biggie'; >> $db_user = 'root'; >> $db_pass = 'gu...@#$'; >> $db_name = 'biblane'; >> >> >> >> Everyone here is trying to help you and that's cool, but EVERYONE on >> this list may n

Re: [PHP] Re: catch the error

2009-02-26 Thread Darryle Steplight
Additionally regarding the error handling , add this to the op of your script. ini_set("display_errors","true"); error_reporting(E_STRICT|E_ALL); and post the output of your error message. On Thu, Feb 26, 2009 at 1:40 PM, Ashley Sheridan wrote: > On Thu, 2009-02-26 at 13:34 -0500, Darryle Stepl