在html文件中,我有:
<form action="save.php" method="post" >
<input type="file" name="file" id="file`enter code here`" />
<input type="submit" name="submit" value="Save" />
所以我需要在“ save.php”页面中上载文件的路径,请指导我。
非常感谢
答案 0 :(得分:0)
只有在save.php
文件中编写PHP代码后,该文件才能上传。
提交表单数据后,您将在$_FILES
中获得所选文件的值。请使用move_uploaded_file()
PHP函数上传文件。