可以将html表单输入值设置为多部分数据吗?
我正在尝试制作一张图片-在提交HTML表单(由PHP生成的远程图像数据)时准备上传
像这样的东西
<form action="http://remote_site.com" method="post" enctype="multipart/form-data">
<input type="file" name="file" value="#Multipart/binary data used here (??)#">
我有一个HTML表单分别上传两张图片(所以我有两个提交按钮)后自动选择,而不需要用户按下提交按钮。从我的研究来看,我应该用
this.form.submit();
图片也将保存在不同的位置。我想知道如何通过名称或id来确定特定按钮的目标。
<input type = "file" name = "headshot1">
<input type = "submit" name = "submit1">
<input type = "file" name = "headshot2
这是我第一次尝试用php上传图片文件到一个目录。我从mongodb数据库中获取数据,并将其打印为html。 foreach($storeCursor as $store){
echo "
<tr class = 'product-columns'>
<td class ='product__thumbnail store__thumbnail'>
<img