Use Of Undefined Constant in script

后端 未结 3 1078
粉色の甜心
粉色の甜心 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 08:52

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

    change to:

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

提交回复
热议问题