PHP/MySQL - 将 JSON 数据插入 Bluehost 服务器上的数据库,空数据库条目

PHP/MySQL - inserting JSON data into DB on Bluehost server, empty DB entry

这是一个一次性脚本,用于将 JSON 数据插入我在 Bluehost 上的 MySQL 数据库。我在循环内外使用了各种 echo 语句来确保 JSON 信息被正确解析并且循环按预期工作。 Bluehost 帮助文件告诉我使用 SQL 语句而不是 SQLi 或 DBO。

<?php
    $con = mysql_connect ("localhost:port", "username", "password");
    if (!$con) {
        die('Could not reach database: Error Code ' . mysql_error() . "<br>");
    } else {
        echo 'Connected to database. ' . "<br>";
    }
    mysql_select_db ("db_name", $con);

    $jsondata = file_get_contents('BFZ.json');
    $data = json_decode($jsondata, true);

    $cards = $data['cards'];

    // loop through the cards array and load each set of variables into the DB
    for($i = 0; $i <= count($cards); $i++) {
        $card_Name = $cards[$i]['name'];
        $card_ManaCost = $cards[$i]['manaCost'];
        $card_CMC = $cards[$i]['cmc'];

        // Clear the variable from its last use
        $card_Colors = "";

        // If the card has no color info, assign the text "Colorless"
        if ($cards[$i]['colors'] == "") {
            $card_Colors = "Colorless";
        // Else if the card has color info, convert the colors array into one long text variable
        } else {
            for($colorIndex = 0; $colorIndex < count($cards[$i]['colors']); $colorIndex++) {
                $card_Colors = $card_Colors . $cards[$i]['colors'][$colorIndex] . " ";
            }
        }

        // various bits to load into the DB
        $card_Type = $cards[$i]['type'];
        $card_Rarity = $cards[$i]['rarity'];
        $card_Text = $cards[$i]['text'];
        $card_Number = $cards[$i]['number'];
        $card_Power = $cards[$i]['power'];
        $card_Toughness = $cards[$i]['toughness'];
        $card_MultID = $cards[$i]['multiverseid'];
        $card_ID = $cards[$i]['id'];

        // insert the data into the cards table
        $sql = "INSERT INTO cards (card_ID, card_name, manaCost, cmc, colors, type, rarity, card_text, card_number, power, toughness, multiverseid)
        VALUES ('$card_ID', '$card_Name', '$card_ManaCost', '$card_CMC', '$card_Colors', '$card_Type', '$card_Rarity', '$card_Text', '$card_Number', '$card_Power', '$card_Toughness', '$card_MultID')";
    }
    if (!mysql_query($sql, $con)) {
        die('Error: ' . mysql_error());
    } else {
        echo "Data inserted correctly. <br>";
    }
    $con->close();
?>

最后一个 "Data inserted correctly" 总是触发,但我的数据库只有一个条目,其中 0 存储在 cmc、power、toughness 和 multiverseid 以及 colors 条目中的 Colorless。 card_ID 是我的主键,它是空白的。

数据库设置不正确,或者我在代码中遗漏了某些内容。我会包括我的数据库结构的屏幕截图,但我不确定这里是否允许这样做。文本条目的排序规则设置为 utf8_general_ci 和 Varchar,数字的排序规则设置为 int 或 smallint。 JSON 结构在这里:http://mtgjson.com/ .

直到两天前我才知道 PHP 和 MySQL 如果我遗漏了一些简单的东西,请原谅我。我读过的所有其他问题似乎都没有解决这个问题。

您的 mysql_query 在 for 循环之外,这就是它只执行一次的原因。应该是

for($i = 0; $i <= count($cards); $i++) {
    //
    //...
    // insert the data into the cards table
    $sql = "INSERT INTO cards (card_ID, card_name, manaCost, cmc, colors, type, rarity, card_text, card_number, power, toughness, multiverseid)        VALUES ('$card_ID', '$card_Name', '$card_ManaCost', '$card_CMC', '$card_Colors', '$card_Type', '$card_Rarity', '$card_Text', '$card_Number', '$card_Power', '$card_Toughness', '$card_MultID')";

    //----> HERE instead
    if (!mysql_query($sql, $con)) {
       die('Error: ' . mysql_error());
    } else {
       echo "Data inserted correctly. <br>";
    }
}

$card_Type = mysql_real_escape_string($cards[$i]['type']);
$card_Rarity = mysql_real_escape_string($cards[$i]['rarity']);

等等