如果我从数据库中读取文本,其中包含ü,ö,ä等等 - >我的函数没有输出。
检查错误并不容易,因为它的WebHook称为脚本。
示例(就像我的功能一样):
function foo() {
global $db_link;
$output = "Names: ";
$res = mysqli_query($db_link, "SQL");
while ($data = mysqli_fetch_assoc($res)) {
$output .= "Desc1: ".$data['name1']."/";
}
return $output;
}
这是我原来功能的一部分:
$sql = "SELECT * FROM `member_cars` WHERE `car_memberid` = ".$profile_data['member_id'];
$res = mysqli_query($db_link_website, $sql);
$anzahl_erg = mysqli_num_rows($res);
if ($anzahl_erg>0) {
$return_var .= "❚ ".$anzahl_erg." Fahrzeug(e):
";
while ($data = mysqli_fetch_assoc($res)) {
if ($i==2) { echo $return_var .= "
".$i." Fahrzeug:
"; }
$return_var .= "
".$data['car_displayname']."
• Hersteller: ".$data['car_hersteller']."
• Modell: ".$data['car_modell']."
• Hubraum: ".$data['car_hubraum']."
• Baujahr: ".$data['car_baujahr']."
• Leistung: ".$data['car_ps']."
• Treibstoff: ".$data['car_treibstoff']."
";
$i ++;
}
}