初心者です。Fatal error: Uncaught Error: Call to a member function execute() on string in /Applications/MAMP/htdocs/keijiban1/model.php:24 Stack trace: #0 /Applications/MAMP/htdocs/keijiban1/comment.php(23): Db::outputdb() #1 {main} thrown in /Applications/MAMP/htdocs/keijiban1/model.php on line 24
と言うエラー表示が出ており、データベースに接続できていないようです。
以下がcomment.phpと、model.phpのコードです。
- comment.php
php
1<?php 2 require('model.php'); 3 require('template.html'); 4 5 6 7 if(isset($_POST['comment'])){ 8 print('投稿しました<br>'); 9 $db=new Db; 10 $db->inputdb(); 11 }else{ 12 13 } 14 15 16 if(isset($_REQUEST['page']) && is_numeric($_REQUEST['page'])){ 17 $page=$_REQUEST['page']; 18 }else{ 19 $page=1; 20 } 21 $start=5*($page-1); 22 $db=new Db; 23 $db->outputdb(); 24 25 //コメント、時間を繰り返し表示 26 while($comment=self::$comments->fetch()){ 27 print('<p>'); 28 print($comment['comment']); 29 print('</p>'); 30 31 print('<time>'); 32 print($comment['created_at']); 33 print('</time>'); 34 print('<hr>'); 35 } 36 37 38 ////2ページ目以降なら前のページを表示する(1ページ目は表示しない) 39 if($page>=2){ 40 41 print('<a href="comment.php?page='.($page-1).'">前へ</a >'); 42 } 43 44 //最終ページは表示コメント数/5の繰り上げで表示 45 $db=new Db; 46 $db->countdb(); 47 48 $max_page=ceil($count['cnt']/5); 49 //現在のページ<最終ページなら次ページを表示する 50 if($page<$max_page){ 51 print('<a href="comment.php?page='.($page+1).'">次へ</a>'); 52 } 53 54?> 55
- model.php
php
1<?php 2Class Db{ 3 private static $statement='INSERT INTO comments SET comment=?, created_at=NOW()'; 4 private static $comments='SELECT * FROM comments ORDER BY id DESC LIMIT ?,5'; 5 private static $counts='SELECT COUNT(*) AS cnt FROM comments'; 6 private static $pdo; 7 public function __construct(){ 8 try{ 9 self::$pdo = new PDO('mysql:dbname=keijiban1;host=127.0.0.1;charset=utf8','root','root'); 10 11 }catch(PDOException $e){ 12 echo 'DB接続エラー:'.$e->getMessage(); 13 } 14 } 15 //コメントをデータベースに登録 16 public static function inputdb(){ 17 $stmt=self::$pdo->prepare(self::$statement); 18 $stmt->execute(array($_POST['comment'])); 19 } 20 //データベースからコメント取り出し 21 public static function outputdb(){ 22 $stmt=self::$pdo->prepare(self::$comments); 23 self::$comments->bindParam(1,$start,PDO::PARAM_INT); 24 self::$comments->execute(); 25 } 26 27 public static function countdb(){ 28 $stmt=self::$pdo->query(self::$counts); 29 $count=self::$counts->fetch(); 30 31} 32 33 34} 35 36?> 37
よろしくお願い致します。

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。