[PHP] Re: php3/php4 difference

2002-02-23 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > $numresult=mysql_query($sql) > or die( "4 QUERY ERR $sql"); > > echo "numresult = $numresult"; > > $numrows=mysql_num_rows($numresult); > mysql_free_result($numresult); > echo "You have selected " .$numrows ." > record(s)."; >

[PHP] Re: php3 -> php4

2001-08-01 Thread Richard Lynch
> "Liviu Popescu" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I have a lot of php scripts developed with php3. > > I've installed php4 and I get some warnings when I > > evaluate variables there are not set (are empty). > > In php3 there was no problem (

[PHP] Re: php3 -> php4

2001-07-31 Thread elias
Edit your PHP.ini file and change the error_reporting to: error_reporting=E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR ; show only errors "Liviu Popescu" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a lot of php scripts developed with php3. > I've installed