我有一个具有以下结构的页面:
1. Text
2. Form with SUBMIT button that allows users to upload files
3. PHP code to handle the files
我想在完成2之前完成2(等待用户点击SUBMIT)。我还希望将活动保持在同一页面上......如果用户点击提交他/她是重定向到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";
}
}
?>
答案 0 :(得分:1)
仅使用PHP无法实现此目的。如果您希望进程位于同一页面上(无需刷新),则需要使用AJAX,即javascript。尝试阅读jQuery ajax部分。
当您上传文件时,您无法使用纯ajax进行文件上传(xmlhttprequest对象不支持文件上传),因此您可能需要查找插件才能执行此操作,或者您可以使用隐藏的IFRAME你的表格将成为目标。
答案 1 :(得分:1)
1)在表单的动作中给出相同文件的名称......
2)给出名称以提交按钮lits说name =&#34;提交&#34;
3)在同一页面上:
if(isset($_POST['submit']))
{
write file handliig code here..
all file processing code you were doing in that redirected php script do here..
}