view.php

view.php

You are currently viewing a revision titled "view.php", saved on 2023年2月3日 7:17 PM by fittingmind
タイトル
view.php
コンテンツ
<!DOCTYPE_html> <html_lang="ja"> <head> <meta_charset="UTF-8"> <title>データベース初歩</title> </head> <body> <center> <!---メニュー------> <table> <tr> <td><a href="index.php">HOME</a></td> <td><a href="view.php">view</a></td> <td><a href="search.php">search</a></td> <td><a href="edit.php">edit</a></td> <td><a href="delete.php">delete</a></td> </tr> </table> <!---メニュー------> <!------php---------------------------------------------> <?php //データベースの接続と選択 $host="mysql1.php.xdomain.ne.jp"; $username="ibarakiclass_uwa"; $password="Te9236St"; $dbname="ibarakiclass_wata"; $mysqli = new mysqli($host, $username, $password, $dbname); if ($mysqli->connect_error) { printf($mysqli->connect_error); exit; } //結果の出力 $HTLM=""; $query = "SELECT * FROM ibarakiclass_wata ORDER by id ASC LIMIT 0,50"; if ($result = $mysqli->query($query)) { while ($row = $result->fetch_assoc()) { $HTLM = $HTLM." <tr> <td> ".$row["id"]." </td> <td> ".$row["name"]." </td> <td> ".$row["address"]." </td> <td> ".$row["tel"]." </td> <td> ".$row["mail"]." </td> </tr> "; } $result->close(); } //接続のクローズ $mysqli->close(); ?> <div> <table border="1"> <?=$HTLM?> </table> </div> <p>登録が完了しました。<br /><a href="index.php">戻る</a></p> <!------php---------------------------------------------> </body> </html
抜粋
脚注


Old New Date Created Author Actions
2023年2月3日 10:17 AM fittingmind

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です