Re: [PHP-INST] New Problem

2003-01-06 Thread Jeffrey_N_Dyke
"Steen Rabol" <[EMAIL PROTECTED] To: "Eugene Wolff" <[EMAIL PROTECTED]> ele.dk> cc: [EMAIL PROTECTED]

Re: [PHP-INST] New Problem

2003-01-06 Thread - Edwin
Hello, "Eugene Wolff" <[EMAIL PROTECTED]> wrote: > Hi, > > I have the following script. When I open it says: > > Notice: Undefined variable: submit in c:\inetpub\wwwroot\phpTest9.php > on line 4 Although the input boxes all show fine. Obviously it does > not do the first part of the code

Re: [PHP-INST] New Problem

2003-01-06 Thread Steen Rabol
Hi Well... If you look at your script, you'll see that you are trying to test on $submit, the 'problem' is that you have not defined $submit, not as a local var and not as a var from eg a URL, in other words: You are trying to test on something that you have not yet defined - IMHO 'sloppy' cod