我有下面的代碼檢索數據到一個變量:如何在PHP中複製SQL結果變量?
$result = mysql_query("SELECT ............
然後我試圖複製所述可變:
if (!$result) {......}
else{
$ref =& $result;
$resultCopy = $ref;
echo '</br></br>SQL STMT EXECUTED CORRECLTY</br></br>';
}
然後,我用$結果打印出來的表格:
....
while ($row = mysql_fetch_assoc($result)) {
echo '<tr>';
echo '<td>';
echo $row['name'];
....
}
然後我嘗試使用$ resultCopy打印出一張表格:
while ($row1 = mysql_fetch_assoc($resultCopy)) {
echo '<tr>';
echo '<td>';
echo $row['name'];
....
}
但第二個表格不會將任何數據提示給屏幕,只是我在表格上方聲明的表格標題。
感謝您的任何幫助/ PHP編碼指導方針/建議。
沒有任何結果,我初次嘗試$ copyresult = $結果,並沒有工作要麼 –
'同時($ row1 = mysql_fetch_assoc($ resultCopy)){ foreach($ row1 as $ key => $ value){ c1 [$ key] = $ value; c2 [$ key] = $ value; } }' –