PHP - Fatal error: Unsupported operand types

前端 未结 5 1433
别跟我提以往
别跟我提以往 2020-12-19 07:59

I keep getting the following error and I was wondering on how to fix?

Fatal error: Unsupported operand types in C:\\wamp\\www\\tuto\\core\\Controller.php on          


        
5条回答
  •  佛祖请我去吃肉
    2020-12-19 08:42

    The problem of fatal error unsupported operand type is cause by failing to add the equal sign to the mysql fetch array after variable. Try this write the statement like that and use these examples like adding - or _ You will see fatal error.

    $query=mysql_query("SELECT * FROM user");
    $fetch=mysql_fetch_array($query);
    

提交回复
热议问题