frop加载时未从数据库显示drropdownlist值

问题描述

|
<?php

require_once(\"../../db_connect/db_connect.php\");


$decoded = json_decode($_GET[\'json\']);
$ias = $decoded->{\'ias\'};
$ian = $decoded->{\'ian\'};

$select = \"select iacode,ianame from isdsmot_ia_creation\";
$res = mysql_query($select);
while ($row = mysql_fetch_array($res)) {
    $ias = $row[\'iacode\'];
    $ian = $row[\'ianame\'];
    $ia=$ias.\"|\".$ian;

echo \"<OPTION value = \\\"\" . $row[0] . \"|\" . $row[1] . \"\\\">\" . $ia . \"</OPTION>\";
}

$result=$ia;
    if ($result) {

        echo \"Successful\" . mysql_error();
    } else {

        echo \"Unsuccess\" . mysql_error();
    }

?>
    

解决方法

这对您有帮助吗?
<?php

require_once(\"../../db_connect/db_connect.php\");


$decoded = json_decode($_GET[\'json\']);
$ias = $decoded->{\'ias\'};
$ian = $decoded->{\'ian\'};

$select = \"select iacode,ianame from isdsmot_ia_creation\";
$res = mysql_query($select);
echo \'<select name=\"myDropDown\">\';
while ($row = mysql_fetch_array($res)) {
    $ias = $row[\'iacode\'];
    $ian = $row[\'ianame\'];
    $ia=$ias.\"|\".$ian;

    echo \"<OPTION value = \\\"\" . $row[0] . \"|\" . $row[1] . \"\\\">\" . $ia . \"</OPTION>\";
}
echo \'</select>\';

$result=$ia;
    if ($result) {

        echo \"Successful\" . mysql_error();
    } else {

        echo \"Unsuccess\" . mysql_error();
    }
?>     

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...