|  | 
 
| <?php class Index_model extends Model
 {
 function Index_model()
 {
 parent::Model();
 }
 function inter()
 {
 $title=$_POST['title'];
 $message=$_POST['message'];
 $this->db->query("INSERT INTO `book`.`message` (`id` ,`title` ,`message`) VALUES ('NULL' , '$title', '$message')");
 }
 }
 ?>
 他老是提出Fatal error: Call to a member function query() on a non-object in C:\AppServ\www\book\system\application\models\index_model.php on line 12请问下是什么原因,
 | 
 |