duanpuqi9965 2014-03-27 18:47
浏览 12
已采纳

只返回每行值的第一个字母

I'm having a bit of an issue with what is normally a simple foreach loop through a query array. I am trying to target individual field values from a row, but its only returning the first letter of each. New to OCI so any help would be appreciated.

$custcart = oci_parse($conn,"SELECT * FROM A113222813_CARTLINE WHERE CUST_ID=  
:cust_id");
oci_bind_by_name($custcart, ":cust_id", $_SESSION["CUST_ID"]);

if (!$custcart) {
    echo "There was an error. Please wait wwhile we redirect you.";
    $url ="login.php";
    $time_out = 5;
    header("refresh: $time_out; url=$url");
}

oci_execute($custcart);
include 'includes/header.php';

while ($row = oci_fetch_array($custcart, OCI_ASSOC)) {
    foreach ($row as $item) {
        echo $item['CART_NAME'];

    }
}
  • 写回答

1条回答 默认 最新

  • duanmei9980 2014-03-27 18:52
    关注

    The while is looping over all returned rows. You are then foreach ing across that row and accessing the columns in the row (don't do that). You just want the while and access CART_NAME in $row:

    while ($row = oci_fetch_array($custcart, OCI_ASSOC)) {
        echo $row['CART_NAME'];
    }
    

    If you want to store the rows in an array to use more than once in the script, then:

    while ($row[] = oci_fetch_array($custcart, OCI_ASSOC)) { }
    
    //now or later
    
    foreach ($row as $item) {
        echo $item['CART_NAME'];
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应