Have an account? Sign in
Login  Register  Facebook
This Page is Under Construction! - If You Want To Help Please Send your CV - Advanced Web Core (BETA)
Quick Table of Contents
[Edit] Unexpected T_LNUMBER, expecting T_STRING
This notice usually renders when you begin the name of a function with a number.

How can i fix it

Do not use a number as the first character in the name of function, object, or variable. This function name below will render the error.
function 2ndFunction() {
    echo "The number as first character in the name of the function will render this error.";
}
August 29, 2011