我正试图让我的功能正常工作,过了一会儿我猛击键盘,然后一切正常,我注意到:
{
function get_people_fullname($db, $people_id) {
$query = 'SELECT
people_fullname
FROM
people
WHERE
people_id = '.$people_id;
$result = mysql_query($query, $db) or die(mysql_error($db));
$row = mysql_fetch_assoc($result);
return $row['people_fullname'];}
}
查询去哪里
people_id = '.$people_id;
哪个有效
I originally had
people_id = $people_id';
这是行不通的
我只是迷路了,我认为这是一个更有经验的人可以向我解释的简单事情?
谢谢