Sunday, 21 May 2017

php - Base table or view not found


Fatal error: Uncaught exception 'PDOException' with message
'SQLSTATE[42S02]: Base table or view not found: 1146 Table
'grandmaspizza.DailyOffer'




Screenshot of Base Table




As you can see, the table is created, but still that error shows up.



On localhost it works all correctly, but when I place it online it wont work no matter what I try to do.



Have read that it could be a database corruption, do you think that could be it?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...