douzhanglun4482 2016-04-04 05:43
浏览 51
已采纳

在php mysql中回显while语句外的多个字段

Sorry if look silly as i am a beginner

I am comparing id's and displaying data .

Expected output

Name1 Name2 Name3

Code.

$cout = mysql_query("SELECT * FROM student where parent_id='$update_id' ",$link);
while($cput = mysql_fetch_array($cout)){
  echo $cput['s_name'];   
}

But, i want to echo outside while loop, so i tried the following but it outputs only the last value i.e., Name3

$cout = mysql_query("SELECT * FROM student where parent_id='$update_id' ",$link);
while($cput = mysql_fetch_array($cout)){
  $sname = $cput['s_name'];
}
echo $sname;

I can understand that the loop will terminate after while loop and hence it won't do the required one . But, i think that there might be a work around . Anyone can help me over here please.

  • 写回答

2条回答 默认 最新

  • dongshen7407 2016-04-04 05:49
    关注

    Define a variable to keep names with space separated ($sname) then concatenate s_name value in each iteration like $sname .= $cput['s_name'] . ' ';

    So your code will be like...

    $cout = mysql_query("SELECT * FROM student where parent_id='$update_id' ",$link);
    $sname = '';
    while($cput = mysql_fetch_array($cout)){
        $sname .= $cput['s_name'] . ' ';
    }
    echo $sname;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥40 selenium访问信用中国
  • ¥15 电视大赛投票系统的c语言代码怎么做
  • ¥20 在搭建fabric网络过程中遇到“无法使用新的生命周期”的报错
  • ¥15 Python中关于代码运行报错的问题
  • ¥500 python 的API,有酬谢
  • ¥15 软件冲突问题,软件残留问题
  • ¥30 有没有人会写hLDA,有偿求写,我有一个文档,想通过hLDA得出这个文档的层次主题,有偿有偿!
  • ¥50 有没有人会写hLDA,有偿求写,我有一个文档,想通过hLDA得出这个文档的层次主题,有偿有偿!
  • ¥15 alpha101因子里哪些适合crypto?
  • ¥15 ctrl win alt 键一直触发
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部