Re: [PHP-WIN] Re: Undefined variables

2003-07-02 Thread Stephen
From: "Jupiter Wen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 01, 2003 5:22 PM Subject: [PHP-WIN] Re: Undefined variables > You may edit c:\windows\php.ini, and change > > [php] > error_reporting= E_ALL; > > to > > [php] >

[PHP-WIN] Re: Undefined variables

2003-07-02 Thread Jupiter Wen
You may edit c:\windows\php.ini, and change [php] error_reporting= E_ALL; to [php] error_reporting= E_PARSE; Good luck! :) Jupiter Wen "Jorge L." <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I bought a book on PHP, and in one of the examples it declares a variable > without a

Re: [PHP-WIN] Re: Undefined variables

2003-06-17 Thread DvDmanDT
I have never used E_ALL, still I don't have lots of bugs in my PHP apps, and when I get one, I track it down in secs anyway... Let me show you an example of how my code looks like: $exp=preg_replace(array("#(\+|\-)([a-z])#i","#(\+|\-) #"),array("\\11\\2","\\1"),$exp); echo $exp," = ";$s=split(" ",

Re: [PHP-WIN] Re: Undefined variables

2003-06-17 Thread Per Lundberg
On Tue, 2003-06-17 at 01:20, DvDmanDT wrote: > Because if you are reading a book, and want to try the samples, chances are > quite big you want to try it exactly bit by bit, not modifying it on your > own... And even more, if you get like a CD or something, it must feel VERY > bad to have to rewrit

Re: [PHP-WIN] Re: Undefined variables

2003-06-16 Thread DvDmanDT
Because if you are reading a book, and want to try the samples, chances are quite big you want to try it exactly bit by bit, not modifying it on your own... And even more, if you get like a CD or something, it must feel VERY bad to have to rewrite it all... Now, which part was depricated? And in ph

Re: [PHP-WIN] Re: Undefined variables

2003-06-16 Thread Harpreet
I am getting the following error when i use the IE back button. Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available. As a security precaution, Internet Explorer does not automatically resubmit your information for

Re: [PHP-WIN] Re: Undefined variables

2003-06-16 Thread Per Lundberg
On Mon, 2003-06-16 at 18:49, DvDmanDT wrote: > It's your PHP.ini... You must set error_reporting to like E_ALL & ~E_NOTICE > or something like that... You might also want to check register_globals, > most likely you want this to be On instead of Off which is default... Both of these are very bad a

[PHP-WIN] Re: Undefined variables

2003-06-16 Thread DvDmanDT
It's your PHP.ini... You must set error_reporting to like E_ALL & ~E_NOTICE or something like that... You might also want to check register_globals, most likely you want this to be On instead of Off which is default... "Jorge L." <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > I bo