如何用PHP做文件上传,和在网页上点击打开Word或Excel文件
1个回答
展开全部
<?php
if($submit && $testfile<> "none") {
$path="/home/httpd/html/"; //绝对路径,注意Linux和Windows下面的格式,windows格式为:c:\\apache2\\htdocs\ $filename=$testfile_name;
if (!@copy($testfile,$path.$filename)) {
echo "复制文件失败...<br>\n";
exit();
}
@unlink($testfile);
echo "文件上传成功!地址为:<a href=\"$filename\">下载</a>";
exit;
}
?>
<form action="<?php echo $PHP_SELF;?>" method="post" enctype="multipart/form-data">
<input name="testfile" type="file" size=20 enctype="multipart/form-data">
<input type=submit name=submit value="开始上传">
</form>
if($submit && $testfile<> "none") {
$path="/home/httpd/html/"; //绝对路径,注意Linux和Windows下面的格式,windows格式为:c:\\apache2\\htdocs\ $filename=$testfile_name;
if (!@copy($testfile,$path.$filename)) {
echo "复制文件失败...<br>\n";
exit();
}
@unlink($testfile);
echo "文件上传成功!地址为:<a href=\"$filename\">下载</a>";
exit;
}
?>
<form action="<?php echo $PHP_SELF;?>" method="post" enctype="multipart/form-data">
<input name="testfile" type="file" size=20 enctype="multipart/form-data">
<input type=submit name=submit value="开始上传">
</form>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询