Lou asked ... Mac Allister 35cm electric lawn mower?    |    Ronald Charlwood asked ... Beko fridge/freezer not cold enough?    |    John Broadbent asked ... Advise?    |    suzy asked ... Brother kh-940 not in sync with DAK9 in interactive knitting?    |    Susan asked ... How can I stop my steam iron spraying water with the steam?    |    Click here to ask your question

If ($Submit) error in PHP?

Why when I use the code-

If ($Submit)
{
}

- in php do I get a undefined variable error?
Cas, March 2004
Or if you could do this:

if(isset($Submit)) {
// Code here
}

Easy Tiger, November 2010
This "error" is a Notice, rather than an actual error. You can change the php config on your server so that you don't get this Notice. This will make your code work.

In the php.ini file change the error_reporting config from...

error_reporting = E_ALL; display all errors, warnings and notices

to

error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR

Lewis, March 2004