gpt4 book ai didi

php - 我的 php 代码无法选择 mysql auto_increment 值

转载 作者:行者123 更新时间:2023-11-29 02:27:53 26 4
gpt4 key购买 nike

function shopView(){
global $core;
$shop = mysql_query("SELECT * FROM services ORDER BY id DESC");
$return = '<article>';
if($shop){
while ($row = mysql_fetch_array($shop)) {
$return .= '<h4>'.$row['nazwa'].'</h4><a href="index.php?view=buy&service='.$row['id'].'" class="button">Kup za '.$row['koszt'].' zl (+vat)</a>';
}
}
else{
$return .= 'Niestety coś poszło nie tak ;/';
}
$return .= '</article>';
return $return;
}

我不知道为什么这个 $row['id'] 不起作用。我有一些类似的代码,还有类似 ?value='.$query['auto_increment'].' 的代码,一切正常。有人可以帮我吗?

最佳答案

使用下面的代码

function shopView(){
global $core;
$shop = mysql_query("SELECT * FROM services ORDER BY id DESC");
$return = '<article>';
if($shop){
while ($row = mysql_fetch_array($shop,MYSQL_ASSOC)) {
$return .= '<h4>'.$row['nazwa'].'</h4><a href="index.php?view=buy&service='.$row['id'].'" class="button">Kup za '.$row['koszt'].' zl (+vat)</a>';
}
}
else{
$return .= 'Niestety coś poszło nie tak ;/';
}
$return .= '</article>';
return $return;
}

引用 http://php.net/manual/en/function.mysql-fetch-array.php

关于php - 我的 php 代码无法选择 mysql auto_increment 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18210065/

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