doutan2228 2012-08-22 10:12
浏览 29
已采纳

将多个fileupload与PHP中的复选框相关联

I want to do something when a file is uploaded and the related checkbox is checked in PHP, how do i link the file input type with the checkbox?

this is what i have:

<input type="file" name="file_upload[]"  /> <input type="checkbox" name="checkbox[]"> linked to file-upload 1 <br/>
<input type="file" name="file_upload[]"  /> <input type="checkbox" name="checkbox[]"> linked to file-upload 2 <br/>
<input type="file" name="file_upload[]"  /> <input type="checkbox" name="checkbox[]"> linked to file-upload 3 <br/>
<input type="file" name="file_upload[]"  /> <input type="checkbox" name="checkbox[]"> linked to file-upload 4 <br/>
  • 写回答

2条回答 默认 最新

  • doushijia5684 2012-08-22 10:20
    关注

    Give them unique names:

    <input type="file" name="file_upload[0]">
    <input type="checkbox" name="checkbox[0]">
    
    <input type="file" name="file_upload[1]">
    <input type="checkbox" name="checkbox[1]">
    

    PHP will still represent them as arrays.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 VS2022创建MVC framework提示:预安装的程序包具有对缺少的注册表值的引用
  • ¥15 weditor无法连接模拟器Local server not started, start with?
  • ¥20 6-3 String类定义
  • ¥15 嵌入式--定时器使用
  • ¥20 51单片机学习中的问题
  • ¥30 Windows Server 2016利用兩張網卡處理兩個不同網絡
  • ¥15 Python中knn问题
  • ¥15 使用C#,asp.net读取Excel文件并保存到Oracle数据库
  • ¥15 C# datagridview 单元格显示进度及值
  • ¥15 thinkphp6配合social login单点登录问题