php Mysql 20221208授業 db_sample01.phpとinput.phpのソース

php Mysql 20221208授業 db_sample01.phpとinput.phpのソース

"; } $result->close(); } //接続のクローズ $mysqli->close(); ?>
You are currently viewing a revision titled "php Mysql 20221208授業 db_sample01.phpとinput.phpのソース", saved on 2022年12月8日 7:10 PM by fittingmind
タイトル
php Mysql 20221208授業 db_sample01.phpとinput.phpのソース
コンテンツ
コピーした後に[UTF-8]のLFに文字コード変換してください。 またphpはパーミッションの変更はしません。 db_sample01.php connect_error){ echo $mysqli->connect_error; exit(); }else{ $mysqli->set_charset("utf-8"); } return $mysqli; } ?> ----------------------------------------------------------------- input.php データベース初歩
HOME view search edit delete
connect_error) { printf($mysqli->connect_error); exit; } //SQLを実行 $sql="INSERT INTO ibarakiclass_wata (name,address,tel,mail) VALUES ('".$name."','".$address."','".$tel."','".$mail."')"; //echo " sql = ".$sql; $res = $mysqli->query($sql); if (!$res) { printf($mysqli->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()) { // printf("%s (%s)\n", $row["name"], $row["address"]); $HTLM = $HTLM."
".$row["id"]." ".$row["name"]." ".$row["address"]." ".$row["tel"]." ".$row["mail"]."

登録が完了しました。
戻る

抜粋
脚注


Old New Date Created Author Actions
2022年12月8日 10:11 AM fittingmind
2022年12月8日 10:10 AM fittingmind