Use Of Undefined Constant in script

后端 未结 3 1024
粉色の甜心
粉色の甜心 2021-01-29 08:39

I\'ve searched the site and saw fixes for the issue in which the user should have put single quotes around the variable but I still a bit confused.

Errors: (all refer to

3条回答
  •  一生所求
    2021-01-29 09:14

    Your forgot to put dollar-signs.

    Replace this:

    $user_ok = evalLoggedUser($con,log_id,log_username,log_password);
    

    with this:

    $user_ok = evalLoggedUser($con,$log_id,$log_username,$log_password);
    

提交回复
热议问题