Hi,
My script works fine until I turn on all notices, then I get this error:
Notice: Undefined index: L_USERNAME
This is referring to:
$L_USERNAME=$_POST['L_USERNAME'];
Now I realise this is because $L_USERNAME is not set, so I tried replacing it with:
if (isset($L_USERNAME=$_POST['L_USERNAME']));
...which now gives me this error:
Parse error: parse error, unexpected '=', expecting ',' or ')'
Yet my syntax highlighting (Ultraedit) shows the syntax as correct! What is the correct syntax? I know I could simply switch off the failure notices, but I want my coding to be clean 🙂
Any help appreciated,
Jonathen