我确定您可以告诉我PHP的新手,我正在从头开始构建一个琐碎的奖励应用程序进行练习。这是查询。感谢您的帮助。
$amt_query = "select `chore_worth` from chores
where child_id=".$_GET['kids_id']."
and chore_name=".$_SESSION['choreName'].""
答案 0 :(得分:1)
它可以工作,但是在此之前,请检查您的代码,因为它很容易受到SQL注入的攻击。</ p>
"SELECT chore_worth FROM chores
WHERE child_id = '" . $_GET['kids_id'] . "'
and chore_name = '" . $_SESSION['choreName'] . "' ";