PHP上传文件小例子
<html><head></head><body><?phpecho $_FILES['hello']['error'];echo "start".$_FILES['hello']['type'];echo $_FILES['hello']['size'];echo $_FILES['hello']['tmp_name']."end";move_uploaded_file($_FILES['hello']['tmp_name'], "./windows.pdf");echo "finish!!";?><p><font color="red">hello</font></p><div class="aritcle_card flexRow">
<div class="artcardd flexRow">
<a class="aritcle_card_img" href="/xiazai/js/5805" title="PHP多文件上传插件"><img
src="https://img.php.cn/upload/jscode/000/120/096/5e141a807a7f1326.jpg" alt="PHP多文件上传插件" onerror="this.onerror='';this.src='/static/lhimages/moren/morentu.png'" ></a>
<div class="aritcle_card_info flexColumn">
<a href="/xiazai/js/5805" title="PHP多文件上传插件">PHP多文件上传插件</a>
<p>PHP多文件上传插件</p>
</div>
<a href="/xiazai/js/5805" title="PHP多文件上传插件" class="aritcle_card_btn flexRow flexcenter"><b></b><span>下载</span> </a>
</div>
</div><?php ?><form action="index.php" enctype="multipart/form-data" method="post"><input type="file" name="hello"/><input type="submit" name="submit" value="submit"/></form></body></html>










