如何在php的另一个表中使用一个表的值?

时间:2018-04-28 08:59:43

标签: php mysql

$voter=mysql_query("SELECT * FROM voter where voter_id='$_SESSION[voter_id]'")
or die("There are no records to display ... \n" . mysql_error()); 
$state = $row['state'];

$result = mysql_query("SELECT * FROM Candidates WHERE candidate_region = '$state'")
  or die(" There are no records at the moment ... \n"); 

&GT?; 上面的代码有两个独立的表格选民和候选人。 我想要的是,从表格选民中选择状态,即我希望在候选人中使用$ state。 我在上面的代码中已经完成了但是我没有从候选表中的$ state获得价值。

0 个答案:

没有答案