我有以下結構的網頁:使用PHP上傳文件後執行操作?
1. Text
2. Form with SUBMIT button that allows users to upload files
3. PHP code to handle the files
我想完成2(等待用戶點擊提交)纔去3.我也想保持活動上同頁面...現在,如果用戶點擊提交,他/她將被重定向到upload.php腳本。
鑑於我是PHP新手,完成此操作的最簡單方法是什麼?感謝您的時間。下面
代碼:
HTML(我想保持這一切頁):
<html>
<body>
<form action="upload_file.php" method="post" enctype="multipart/form-data">
<br />
<label for="file">Upload Files:</label>
<br />
<br />
<input type="file" name="file1" id="file" />
<input type="file" name="file2" id="file" />
<input type="file" name="file3" id="file" />
<br />
<br />
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>
<?php
//$result = $storageClient->putBlob('testcontainer', 'example.txt', 'C:/example.txt');
// I'll be uploading each of the three uploaded files here
// Syntax: putBlob (ContainerName, NameInStorage, FileLocation)
?>
腳本:
<?php
error_reporting(E_ALL);
for ($i=1; $i<4; $i++)
{
$file = "file" . $i;
if (($_FILES[$file]["size"] < 20000))
{
if ($_FILES[$file]["error"] > 0)
{
echo "Return Code: " . $_FILES[$file]["error"] . "<br />";
}
else
{
echo "Upload: " . $_FILES[$file]["name"] . "<br />";
echo "Type: " . $_FILES[$file]["type"] . "<br />";
echo "Size: " . ($_FILES[$file]["size"]/1024) . " Kb<br />";
echo "Temp file: " . $_FILES[$file]["tmp_name"] . "<br />";
$moved = move_uploaded_file($_FILES[$file]["tmp_name"], "C:/inetpub/wwwroot/PHP_Ramp/upload/" . $_FILES[$file]["name"]);
if ($moved) {
echo "Move: Success <br/>";
}
else {
echo "Move Failed <br/>";
}
echo "Stored in: " . "C:/inetpub/wwwroot/PHP_Ramp/upload/" . $_FILES[$file]["name"];
}
}
else
{
echo "Invalid file";
}
}
?>
你可以發佈你到目前爲止試過的代碼,並指出你在哪裏得到錯誤/問題? – Clive 2012-01-06 16:59:51
您可能需要將Javascript添加到您的標籤中,因爲這將需要它。 – Michael 2012-01-06 17:01:28
請澄清你的問題。 PHP工作的方式是腳本只有在上載完成後纔會執行,因此「我想在執行腳本之前完成上載」問題是無關緊要的。 – dtech 2012-01-06 17:01:59