PHP初心者で、簡単な掲示板を作っているところです。
会員登録画面から登録した時に、データベースに数値が反映されていませんでした。エラーは出ていません。
わざとユーザー名やパスワードを間違えて見た所、
DB接続エラー : SQLSTATE[HY000] [1045] Access denied for user '(名前)'@'localhost' (using password: YES)
と表示されました。どこに問題があるのでしょうか。よろしくお願いいたします。
また、入力内容を確認する画面で写真がしっかり表示されないことも気になります。
dbconnect.php ↓
<?php try { $db = new PDO('mysql:dbname=mini_bbs;host=127.0.0.1; charset=utf8', 'root', 'root'); } catch(PDOException $e) { print('DB接続エラー : ' . $e->getMessage()); }
index.php↓
<?php session_start(); if (!empty($_POST)) if ($_POST['name'] === '') { $error['name'] = 'blank'; } if ($_POST['email'] === '') { $error['email'] = 'blank'; } if (strlen($_POST['password']) < 4 ) { $error['password'] = 'length'; } if ($_POST['password'] === '') { $error['password'] = 'blank'; } $fileName = $_FILES['image']['name']; if(!empty($fileName)) { $ext = substr($fileName, -3); if($ext != 'jpg' && $ext != 'gif' && $ext != 'png'){ $error['image'] = 'type'; } } if (empty($error)) { $image = date('YmdHis') . $_FILES['image']['name']; move_uploaded_file($_FILES['image']['tmp_name'], '.._member_picture/' . $image); $_SESSION['join'] = $_POST; $_SESSION['join']['image'] = $image; header('Location: check.php'); exit(); } if ($_REQUEST['action'] == 'rewrite' && isset($_SESSION['join'])) { $_POST = $_SESSION['join']; } ?> ?> <!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>会員登録</title> <link rel="stylesheet" href="../style.css" /> </head> <body> <div id="wrap"> <div id="head"> <h1>会員登録</h1> </div> <div id="content"> <p>次のフォームに必要事項をご記入ください。</p> <form action="" method="post" enctype="multipart/form-data"> <dl> <dt>ニックネーム<span class="required">必須</span></dt> <dd> <input type="text" name="name" size="35" maxlength="255" value="<?php print(htmlspecialchars($_POST['name'], ENT_QUOTES)); ?>" /> <?php if ($error['name'] === 'blank'): ?> <p class="error">* ニックネームを入力してください</p> <?php endif; ?> </dd> <dt>メールアドレス<span class="required">必須</span></dt> <dd> <input type="text" name="email" size="35" maxlength="255" value="<?php print(htmlspecialchars($_POST['email'], ENT_QUOTES)); ?>" /> <?php if ($error['email'] === 'blank'): ?> <p class="error">* メールアドレスを入力してください</p> <?php endif; ?> <dt>パスワード<span class="required">必須</span></dt> <dd> <input type="password" name="password" size="10" maxlength="20" value="<?php print(htmlspecialchars($_POST['password'], ENT_QUOTES)); ?>" /> <?php if ($error['password'] === 'length'): ?> <p class="error">* パスワードは4文字以上で入力してください</p> <?php endif; ?> <?php if ($error['password'] === 'blank'): ?> <p class="error">* パスワードを入力してください</p> <?php endif; ?> </dd> <dt>写真など</dt> <dd> <input type="file" name="image" size="35" value="test" /> <?php if ($error['image'] === 'type'): ?> <p class="error">* 写真などは「.gif」または「.jpg」「.png」の画像を指定してください</p> <?php endif; ?> <?php if (!empty($error)): ?> <p class="error">* 恐れ入りますが、画像を改めて指定してください。</p> <?php endif; ?> </dd> </dl> <div><input type="submit" value="入力内容を確認する" /></div> </form> </div> </body> </html>
check.php↓
<?php session_start(); require('../dbconnect.php'); if (!isset($_SESSION['join'])) { header('Location: index.php'); exit(); } if(!empty($_POST)) { $statement = $db->prepare('INSERT INTO members SET name=?, email=?, password=?, picture=?, created=NOW ()'); echo $statement->execute(array( $_SESSION['join']['name'], $_SESSION['join']['email'], sha1($_SESSION['join']['password']), $_SESSION['join']['image'] )); unset($_SESSION['join']); header('Location: thanks.php'); exit(); } ?> <!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>会員登録</title> <link rel="stylesheet" href="../style.css" /> </head> <body> <div id="wrap"> <div id="head"> <h1>会員登録</h1> </div> <div id="content"> <p>記入した内容を確認して、「登録する」ボタンをクリックしてください</p> <form action="" method="post"> <input type="hidden" name="action" value="submit" /> <dl> <dt>ニックネーム</dt> <dd> <?php print(htmlspecialchars($_SESSION['join'] ['name'], ENT_QUOTES)); ?> </dd> <dt>メールアドレス</dt> <dd> <?php print(htmlspecialchars($_SESSION['join'] ['email'], ENT_QUOTES)); ?> </dd> <dt>パスワード</dt> <dd> 【表示されません】 </dd> <dt>写真など</dt> <dd> <?php if ($_SESSION['join']['image'] !== ''): ?> <img src="../member_picture/<?php print(htmlspecialchars ($_SESSION['join']['image'], ENT_QUOTES)); ?>"> <?php endif; ?> </dd> </dl> <div><a href="index.php?action=rewrite">« 書き直す</a> | <input type="submit" value="登録する" /></div> </form> </div> </div> </body> </html>
回答1件
あなたの回答
tips
プレビュー