実現したいこと
リンク内容
こんにちは。このえらーがわからないです。
良ければ解決案をおしえていただけませんか?
発生している問題・分からないこと
エラーメッセージ
error
1SQLSTATE[HY000] [1045] ユーザー 'root'@'localhost' のアクセスが拒否されました (パスワードを使用: YES)
該当のソースコード
<?php $comment_array = array(); if (!empty($_POST["submitButton"])) { echo htmlspecialchars($_POST["username"]); echo htmlspecialchars($_POST["comment"]); } //db start try{ $pdo = new PDO('mysql:host=localhost;dbname=bbs_yt', 'root','root' ); }catch(PDOException $e){ echo $e->getMessage(); } $sql="SELECT 'id','username','comment','postDate'FROM'bbs-table2':"; //$comment_array = $pdo->query($sql); //db end $pdo = null; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>2ちゃんねる風PHP掲示板</title> <link rel="stylesheet" href="style.css"> </head> <body> <h1 class="title">PHPで掲示板アプリ</h1> <hr> <div class="boardWrapper"> <section> <article> <div class="wrapper"> <div class="nameArea"> <span>名前</span> <p class="username">Shincode</p> <time>2023/1/23</time> </div> <p class="comment">手書きのコメントです</p> </div> </article> </section> <form class="formWrapper" method="POST"> <div> <label for="username">名前</label> <input type="text" id="username" name="username" placeholder="ユーザー名"> <input type="submit" value="書き込む" name="submitButton"> </div> <div> <label for="comment">コメント</label> <textarea class="commentTextArea" id="comment" name="comment"></textarea> </div> </form> </div> </body> </html>
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
質問ができるということでこちらのサイトに伺いました
補足
特になし