gpt4 book ai didi

php - 如何使用php从数据库中提取逗号分隔的列值

转载 作者:行者123 更新时间:2023-11-29 04:07:39 24 4
gpt4 key购买 nike

在我的数据库表中有一个名为“marks”的列。它包含像 50,55,67,88,... 这样的值现在我需要一个一个地读取这些值——首先是 50,然后是 55,依此类推。怎么可能使用 php ?

include("db_connect.php"); 
$result = mysql_query("SELECT * FROM students ",$con);
while($rows = mysql_fetch_array($result))
{
$mark1=$rows['marks'];//what will do here
$mark2=$rows['marks']; //should get value 55 and so on
}

最佳答案

如果您的值以逗号分隔,则展开该字段。

http://php.net/manual/en/function.explode.php

include("db_connect.php"); 
$result = mysql_query("SELECT * FROM students", $con);

while($rows = mysql_fetch_array($result)) {
$mark=explode(',', $rows['marks']);//what will do here
foreach($mark as $out) {
echo $out;
}
}

关于php - 如何使用php从数据库中提取逗号分隔的列值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25907030/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com