$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获得价值。