PHPで入会画面、ログインログアウトのシステムを作成したいのですがうまくいきません。
1エラーメッセージが出てない為 MYSQLデータベースへの接続はできてると思うんですが 2会員情報の値が保存されていません。 3色々試してみたんですが、何も進展がない為質問をさせていただきました。 4よろしくお願いします。 5 6 7□□□□□□□発生している問題・エラーメッセージ□□□□□□□□□ 8WEBブラウザからデータベースへの会員情報の保存ができない 9 10エラーメッセージ 11なし
dbconnect.php(データベース用) <?php try { $db = new PDO('mysql:dbname=mini_bbs;host=localhost;charset=utf8','root','root'); } catch(PDOException $e) { print('DB接続エラー:'.$e->getMessage()); exit(); }
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=?,picture=?,created=NOW()'); $statement->execute(array( $_SESSION['join']['name'], $_SESSION['join']['email'], sha1($_SESSION['join']['password']), $_SESSION['join']['image'] )); unset($_SESSION['join']); header('Location:thanks.php'); exit(); } ?>
ファイル名: 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'; } if (empty($error)){ $_SESSION['join'] = $_POST; header('Location: check.php'); exit(); } } ?> <!DOCTYPE html> <html lang="ja"> <head> <meta charset= "utf-8"> <meta name = "description" content=""> <title>登録画面</title> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"> <meta name="viewport" content="width=device-width, initial-scale=1" > <link href="https://fonts.googleapis.com/css?family=Kosugi+Maru&display=swap" rel="stylesheet"> <link rel="shortcut icon" href="img/favicon.ico" /> <link rel="stylesheet" href="../css/login.css"> </head> <body> <h1 class="text-center title">会員登録</h1> <div class="formouter container" id="content"> <form action="" method="post" enctype="multipart/form-data"> <dl> <dt>名前<span class="required">必須</span></dt> <dd> <input type="textarea" placeholder="田中 太郎" name="name" 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="textarea" placeholder="exampla@example.com" name="email" value="<?php print(htmlspecialchars($_POST['email'],ENT_QUOTES)); ?>" /> <?php if($error['email'] === 'blank'): ?> <p class="error">メールアドレスを入力してください。</p> <?php endif; ?> </dd> <dt>写真など</dt> <dd> <input type ="file" name="image" size="35"> <?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> <dt>パスワード<span class="required">必須</span></dt> <dd> <input type="password" placeholder="パスワードを入力してください" size="10" maxlength="20" name="password" value="<?php print(htmlspecialchars($_POST['password'],ENT_QUOTES)); ?>" /> <?php if ($error['password'] === 'length'): ?> <p class="error">パスワードは4文字以上で入力してください。</p> <?php endif; ?> </dd> </dl> <div> <input type="submit" class="btn test" value="確認する"> </div> </form> </div> </body> </html>
試したこと
パスの確認
MYSQLのID passwordの確認
コードの確認
補足情報(FW/ツールのバージョンなど)
PHP 5.6.30
回答2件
あなたの回答
tips
プレビュー