php mysql:我正在尝试从其中rowA = something和rowC = something的表中检索数据(rowB)

时间:2018-07-24 03:57:00

标签: php mysql

我确定您可以告诉我PHP的新手,我正在从头开始构建一个琐碎的奖励应用程序进行练习。这是查询。感谢您的帮助。

$amt_query = "select `chore_worth` from chores
              where child_id=".$_GET['kids_id']."
              and chore_name=".$_SESSION['choreName'].""

1 个答案:

答案 0 :(得分:1)

它可以工作,但是在此之前,请检查您的代码,因为它很容易受到SQL注入的攻击。<​​/ p>

"SELECT chore_worth FROM chores
 WHERE child_id = '" . $_GET['kids_id'] . "' 
 and chore_name = '" . $_SESSION['choreName'] . "' ";