Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/mysql/64.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在PHP中遍历MySQL数据库中的字符数据和项目_Php_Mysql_Json_Database_Actionscript 3 - Fatal编程技术网

在PHP中遍历MySQL数据库中的字符数据和项目

在PHP中遍历MySQL数据库中的字符数据和项目,php,mysql,json,database,actionscript-3,Php,Mysql,Json,Database,Actionscript 3,我有以下代码: include "config.php"; error_reporting(0); $idSuccess = 0; if(isset($_POST['userName'])) { $usr = $_POST['userName']; $pwd = $_POST['userPwd']; $sqlQ = "SELECT * FROM dr_users where dr_user_name='$usr' AND dr_user_pwd='$pwd' LIM

我有以下代码:
include "config.php";
error_reporting(0);

$idSuccess = 0;

if(isset($_POST['userName']))
{

    $usr = $_POST['userName'];
    $pwd = $_POST['userPwd'];
    $sqlQ = "SELECT * FROM dr_users where dr_user_name='$usr' AND dr_user_pwd='$pwd' LIMIT 1";
    $q = mysql_query($sqlQ);

    if(mysql_num_rows($q) > 0)
    {

        $userO = mysql_fetch_assoc($q);
        $userData = array('userID' => $userO['dr_user_id'], 'userName' => $userO['dr_user_name'], 'userPwd' => $userO['dr_user_pwd'], 'userEml' => $userO['dr_user_email'], 'privLvl' => $userO['dr_user_priv_level']);
        $idSuccess = 1;
        $uID = $userO['dr_user_id'];
        $charQ = mysql_query("SELECT * FROM dr_chars WHERE dr_user_id='$uID'");

        while($char = mysql_fetch_array($charQ))
        {

            $chars[] = $char;
            $charID = $char['dr_char_id'];
            $itemQ = mysql_query("SELECT * FROM dr_items WHERE dr_char_id='$charID'");

            while($item = mysql_fetch_array($itemQ))
            {

                $itemData[] = array('itemID' => $item['dr_item_id'], 'itemName' => $item['dr_item_name'], 'itemDesc' => $item['dr_item_desc'], 'itemType' => $item['dr_item_type'], 'itemCost' => $item['dr_item_cost'], 'itemCurType' => $item['dr_item_cur_type'], 'itemAtk' => $item['dr_item_stat_atk'], 'itemDef' => $item['dr_item_stat_def'], 'itemEnd' => $item['dr_item_stat_end'], 'itemLuck' => $item['dr_item_stat_luck'], 'itemFileURL' => $item['dr_item_file_url'], 'itemStaff' => $item['dr_item_staff'], 'itemEquipped' => $item['dr_char_eqp'], 'spX' => $item['dr_static_pos_x'], 'spY' => $item['dr_static_pos_y']);                

            }

            $charData[] = array('charID' => $char['dr_char_id'], 'charName' => $char['dr_char_name'], 'charRace' => $char['dr_char_race'], 'charLvl' => $char['dr_char_lvl'], 'charItems' => $itemData);

        }

        $resData = array('idSuccess' => $idSuccess, 'user' => $userData, 'chars' => $charData);

    } else {


    $resData = array('idSuccess' => $idSuccess);

    }

    echo json_encode($resData);

}

?>
我已成功从数据库中的表“dr_chars”加载字符数据。我试图从检索到的字符ID加载相应的项数据,并将其推送到$charData数组中。因此,我可以轻松地编码并以JSON格式输出它

如果我的问题不清楚,就问吧,我会尽力更好地解释情况。JSON数据被输出到flash中以供动态使用

我成功地修复了最终代码,如下所示:

<?php

include "config.php";
error_reporting(0);

$idSuccess = 0;

if(isset($_POST['userName']))
{

    $usr = $_POST['userName'];
    $pwd = $_POST['userPwd'];
    $sqlQ = "SELECT * FROM dr_users where dr_user_name='$usr' AND dr_user_pwd='$pwd' LIMIT 1";
    $q = mysql_query($sqlQ);

    if(mysql_num_rows($q) > 0)
    {

        $userO = mysql_fetch_assoc($q);
        $userData = array('userID' => $userO['dr_user_id'], 'userName' => $userO['dr_user_name'], 'userPwd' => $userO['dr_user_pwd'], 'userEml' => $userO['dr_user_email'], 'privLvl' => $userO['dr_user_priv_level']);
        $idSuccess = 1;
        $uID = $userO['dr_user_id'];
        $charQ = mysql_query("SELECT * FROM dr_chars WHERE dr_user_id='$uID'");
        $chars = array();

        while($char = mysql_fetch_array($charQ))
        {


            $charID = $char['dr_char_id'];
            $itemQ = mysql_query("SELECT * FROM dr_items WHERE dr_char_id='$charID'");
            $items = array();

            while($item = mysql_fetch_array($itemQ))
            {

                $items[] = array('itemID' => $item['dr_item_id'], 'itemName' => $item['dr_item_name'], 'itemDesc' => $item['dr_item_desc'], 'itemType' => $item['dr_item_type'], 'itemCost' => $item['dr_item_cost'], 'itemCurType' => $item['dr_item_cur_type'], 'itemAtk' => $item['dr_item_stat_atk'], 'itemDef' => $item['dr_item_stat_def'], 'itemEnd' => $item['dr_item_stat_end'], 'itemLuck' => $item['dr_item_stat_luck'], 'itemFileURL' => $item['dr_item_file_url'], 'itemStaff' => $item['dr_item_staff'], 'itemEquipped' => $item['dr_char_eqp'], 'spX' => $item['dr_static_pos_x'], 'spY' => $item['dr_static_pos_y']);

            }

            $chars[] = array('charID' => $char['dr_char_id'], 'charName' => $char['dr_char_name'], 'charRace' => $char['dr_char_race'], 'charLvl' => $char['dr_char_lvl'], 'charItems' => $items);

        }

        $resData = array('idSuccess' => $idSuccess, 'user' => $userData, 'chars' => $chars);

    } else {


    $resData = array('idSuccess' => $idSuccess);

    }

    echo json_encode($resData);

}

?>


您遇到了什么问题?有错误信息吗?没有错误信息只是输出不正确。