所以我有一个非常简单的文件上传表单,下面的代码......
<form enctype="multipart/form-data" action="$theaction" method="POST">
<input name="source" type="file">
<input name="message" type="text" value="">
<input type="submit" value="Upload"/>
</form>
我想知道我是否可以用php设置文件上传的来源?就像是..
<?php $file = "http://mywebsite.com/path/to/img.jpg"; ?>
<input name="source" type="file" src="<?php echo $file; ?>">
我用谷歌搜索了它,但我想不出任何东西。我觉得我只是没有使用正确的词汇,但任何帮助将不胜感激!