thinkphp上传多个图片,只能上传一个图片和保存一个数据,什么原因?
需求:将同时上传的不同图片存到同一个表中的各自对应的字段,怎么实现??1、模板代码显示:<tr><th>站点logo:</th><td><inputtype="file"...
需求:将同时上传的不同图片存到同一个表中的各自对应的字段,怎么实现??
1、模板代码显示:
<tr>
<th>站点logo:</th>
<td>
<input type="file" name="img" id="img" class="input-text" size=21 />
<if condition="$set['site_logo'] neq ''">
<img src="{$set['site_logo']}" style="max-height:64px;" />
</if>
</td>
</tr>
<tr>
<th>硕士logo</th>
<td>
<input type="file" name="master_logo" id="master_logo" class="input-text" size=21 />
<if condition="$set['master_logo'] neq ''">
<img src="{$set['master_logo']}" style="max-height:64px;" />
</if>
</td>
</tr>
<tr>
<th>机构logo</th>
<td>
<input type="file" name="institute_logo" id="institute_logo" class="input-text" size=21 />
<if condition="$set['institute_logo'] neq ''">
<img src="{$set['institute_logo']}" style="max-height:64px;" />
</if>
</td>
</tr>
2、thinphp代码:
用thinkphp的一般上传文件的代码
然后调用。 展开
1、模板代码显示:
<tr>
<th>站点logo:</th>
<td>
<input type="file" name="img" id="img" class="input-text" size=21 />
<if condition="$set['site_logo'] neq ''">
<img src="{$set['site_logo']}" style="max-height:64px;" />
</if>
</td>
</tr>
<tr>
<th>硕士logo</th>
<td>
<input type="file" name="master_logo" id="master_logo" class="input-text" size=21 />
<if condition="$set['master_logo'] neq ''">
<img src="{$set['master_logo']}" style="max-height:64px;" />
</if>
</td>
</tr>
<tr>
<th>机构logo</th>
<td>
<input type="file" name="institute_logo" id="institute_logo" class="input-text" size=21 />
<if condition="$set['institute_logo'] neq ''">
<img src="{$set['institute_logo']}" style="max-height:64px;" />
</if>
</td>
</tr>
2、thinphp代码:
用thinkphp的一般上传文件的代码
然后调用。 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询