Ervin Posted December 8 Share Posted December 8 (edited) Hello! I add one table (dodano) into SQL, but php scriot display error: PHP Warning: Undefined property: MySQLtabledit::$content in /mte/mte.php on line 846 How resolve this? Regards, Ervin example.txt fono.txt mte.txt Edited December 8 by Ervin Quote Link to comment https://forums.phpfreaks.com/topic/326105-add-one-table-in-sql-and-now-php-script-display-error/ Share on other sites More sharing options...
Olumide Posted December 8 Share Posted December 8 21 minutes ago, Ervin said: Hello! I add one table (dodano) into SQL, but php scriot display error: PHP Warning: Undefined property: MySQLtabledit::$content in /mte/mte.php on line 846 How resolve this? The error PHP Warning: Undefined property: MySQLtabledit::$content is due to the fact that the $content property is being referenced in your code, but it hasn't been explicitly declared as a class property in the MySQLtabledit class. Modified Snippet of Your Class class MySQLtabledit { var $content; // Declare the content property } 21 minutes ago, Ervin said: Regards, Ervin example.txt 3.12 kB · 0 downloads fono.txt 2.23 kB · 0 downloads mte.txt 23.97 kB · 0 downloads Quote Link to comment https://forums.phpfreaks.com/topic/326105-add-one-table-in-sql-and-now-php-script-display-error/#findComment-1645210 Share on other sites More sharing options...
Ervin Posted December 8 Author Share Posted December 8 Yes, working... Thank you Quote Link to comment https://forums.phpfreaks.com/topic/326105-add-one-table-in-sql-and-now-php-script-display-error/#findComment-1645221 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.