PHP上传文件小例子
<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'¥本文来源gaodai#ma#com搞@@代~&码网^搞gaodaima代码;], "./windows.pdf");echo "finish!!";?>hello
<?php ?>