this has to do with error reporting,

using the function : 
http://www.php.net/manual/en/function.error-reporting.php 

definition of types : 
http://www.php.net/manual/en/phpdevel-errors.php

you may have E_ALL or E_NOTICE on within php.ini


philip olson
http://www.cornado.com/

On Mon, 29 Jan 2001, James Smith wrote:

> Alright, when i was programming with PHP3, I would use
> if statements like this:
> 
> if(!$submit) {
>    // display form
> } else {
>    // display signup complete
> }
> 
> to make multiple pages.  Or I would do this:
> 
> if($action == "signup") {
>    if(!$submit) {
>       //display form
>    } else {
>       // display signup complete
>    }
> }
> if($action == "login") {
>    // show login screen
> }
> 
> But now I get an error like this:
> 
> Warning: Undefined variable: submit in
> c:\apache\htdocs\test.php on line 3
> 
> I don't know if I misconfigured my php.ini file or
> what.
> 
> Thanks,
> 
> James
> 
> __________________________________________________
> Get personalized email addresses from Yahoo! Mail - only $35 
> a year!  http://personal.mail.yahoo.com/
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to