Home > 000webhost


000webhostデータベースに値を挿入する方法

PHPを使用した値の挿入:<?php $servername = "000webhostのサーバー名"; $username = "データベースのユーザー名"; $password = "データベースのパスワード"; $dbname = "データベース名"; // データベースへの接続 $conn = new mysqli($servername, $username, $password, $dbname); // 接続エラーチェック if ($conn->connect_error) { die("接続エラー: " . $conn->connect_error); >>More