douqinlu4217 2015-05-18 04:15
浏览 20

循环执行时PHP存储过程错误

I have the PHP script :

<?php       
    $count=1;
    $result = $db_connection->prepare("SELECT tid, title FROM message");
    $result->execute();

    while($row = $result->fetch())
    {
        $co_count = 0;
        $cosql = $db_connection->prepare("CALL sp_getresp(?);");
        $cosql->execute(array($row['tid']));

        while($row3 = $cosql->fetch())
        {
            // GET USERS INFO
            $couser = $db_connection->prepare("CALL sp_getuserinfo(?);");
            $couser->execute(array($row3['couid']));
            $row4 = $couser->fetch();

            var_dump($row4);
            echo '<BR>'.$row['tid'].$row4['email'].'<BR>';
            $count++;

        }
    }
?>

In the above code, I try to run the stored procedure. It is working fine except, in the first loop, it doesnt give any data even the data is present. I tried many tests, but $row4['email'] always shows empty in the first loop time, after first loop, it runs fine. I also check directly calling CALL sp_getuserinfo(?); in the mysql where it works fine but not here. I dont understand what is the problem here ?

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 基于卷积神经网络的声纹识别
    • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
    • ¥100 为什么这个恒流源电路不能恒流?
    • ¥15 有偿求跨组件数据流路径图
    • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
    • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
    • ¥15 CSAPPattacklab
    • ¥15 一直显示正在等待HID—ISP
    • ¥15 Python turtle 画图
    • ¥15 stm32开发clion时遇到的编译问题