大家好,我目前刚开始使用 php,我目前正在尝试生成一个字符串以输出到 html 页面上,但目前运气不佳,这是我迄今为止所做的。
$qry = "INSERT INTO bids VALUES (NULL,'".$_SESSION['userID']."','$productID', '".$_POST['bids']."', NOW() )";
$rs = $this -> db -> query($qry);
if($rs)
{
//this bit checks if the database have been added or not by the value greater than 0 then we know it was successful
if($this -> db -> affected_rows > 0)
{
$msg = 'Your bid has been placed';
}
else
{
$msg = 'error in inputing the bid';
}
}
else
{
$msg = 'Outside of $rs';
}
return $msg;
}
使用字符串 $msg 我希望将其作为字符串显示在 html 页面上。
$html . = '$msg';
但目前它没有出现任何人都可以让我知道我做错了什么吗?为什么不$msg
显示?