我有此路径目录"C:\xampp\php\images\"
,
我想要的是:
单击<input type="file">
按钮时,它将定向到该特定路径。
搞不清楚。您的帮助将对我有很大帮助。谢谢
答案 0 :(得分:0)
@AlutiitSalsweet,来自您提交的表单。
<form enctype="multipart/form-data" action="uploadImg.php" method="POST">
<input name="userfile" type="file" placeholder="Upload This File"/>
<input type="submit" value="Upload" />
</form>
在uploadImg.php
<?php
...
$imageDir= '../php/images';
$uploadImg = $imageDir.basename($_FILES['imagefile']['name']);
//check file type if valid
...
//check if file name is already existed else replace the file or give other file version name
?>