-4
我在我的表格中創建了一個名爲「下載」的列中的鏈接,該鏈接將重定向到包含這些文件的「上傳」文件夾,但是當我嘗試點擊鏈接時,它並沒有進入上傳文件夾。鏈接到上傳文件夾
$i=1;
while ($rowList = mysqli_fetch_array($sqltran)) {
$name = array(
'num' => $i,
'date'=> $rowList['date'],
'memo'=> $rowList['memo'],
'title'=> $rowList['title'],
'file' => '<a href="' . $rowList['file'] . '" target="_blank">Download </a>'
);
array_push($arrVal, $name);
$i++;
}
你是什麼意思? – CodeGodie
它應該是每當我點擊我的專欄中的「下載」鏈接它應該去我的上傳文件夾包含文件 –
什麼是$ rowList ['文件']'的內容? – CodeGodie