我需要同时从 2 个单独的表中返回数据。我需要从第二个表中获取的信息取决于从第一个表返回的信息。这就是我正在使用的..
$query = "SELECT * FROM pending WHERE paymentid = '".$_GET['vnum']."'";
$result = mysql_query($query);
$num = @mysql_num_rows($result);
$linkid = $res['paymentid'];
if ($num==0) {
echo "Hello, ".$_SESSION['Fname']."<br />There was an error, I cannot find this payment in the records.";
} else {
$picquery = mysql_query("SELECT * FROM _uploads_log WHERE linkid = '".$linkid."'");
$numb = @mysql_num_rows($picquery);
if ($numb==0) {
echo "there is no picture"; }
else {
echo "<img src=\"".$res['log_filename']."\" width=\"100\">"; }
我不明白如何将结果作为数组返回,如果 $res[] 返回第一个查询的结果,那么返回第二个查询的结果是什么?
还是有更好的方法来完全做到这一点?
谢谢