我正在尝试创建一个仅供个人使用的页面。我想要做的是,创建一个系统,通过它我可以将图像下载到我的本地硬盘,直接通过像 WAMP 这样的本地主机提供链接。我想做的原因是,我希望图像自动分类到我的硬盘上。我的表单字段将是这样的
<form method="POST" action="process.php">
<input type="text" name="URL" id="URL" />
<input type="text" name="category" id="category" />
<input type="text" name="subcategory" id="category" />
<input type="submit">
</form>
现在,在process.php
//This is just a sample... So please ignore the roughness of the coding
copy($_POST['url'],$_POST['category']."/".$_POST['subcategory']."/somename.jpg");
// If you noticed, the categories and subcategories are actually the name of directory, where I want the picture to go be saved....
我认为我的方法是错误的。我怎样才能实现这样的目标?
错误
Warning: copy(images/image.jpg) [function.copy]: failed to open stream: No such file or directory in