会社情報
|
connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// データの取得
$sql = "SELECT gazou, Naiyo FROM aisatsu";
$result = $conn->query($sql);
// データの表示
if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
// 画像データを表示
echo ' | ' . $row["Naiyo"] . ' | '; } else { echo "0 results"; } // データベースの接続を閉じる $conn->close(); ?>
