duandu8707 2015-08-19 23:37
浏览 103
已采纳

如何从php中的视图页面传递值到控制器?

I want to upload several files to the system. For that I used several checkboxes to select relevant upload and I want to pass that value from

form_open_multipart('controller function') 

to controller page. When selecting upload type I set value to label in view page.Then using

form_open_multipart()

function I direct it to controller function. I want to get the value of label. how can I do this?

I set value from js to view element (label) using

$('#set').text(send_id);

<?php 
echo form_open_multipart('uploadFile/doupload');   
?>

<table width="50%" border="0" align="right" cellpadding="0" cellspacing="0" bordercolor="#e65C00" style="border-radius: 5px;">

    <tr id="sliding" style="display:none;">
        <td>
            <label id="set" name="set"></label>
        </td>
        <td>

            <h4>Upload File</h4>
            <div  class="panel panel-warning" id="color" style="background: #ffffff; width:100%; height: auto;">
                Select File To Upload:<br />
                <input type="file" id="userfile" name="userfile" size="20" />

                <br /><br />

                <input type="submit" name="upload_file" value="Upload" class="btn btn-success">

            </div>
        </td>
    </tr>
</table> 
<?php echo form_close(); ?>

展开全部

  • 写回答

1条回答 默认 最新

  • douguai7291 2015-08-19 23:47
    关注

    You can do any of the following 3

    • Post the values directly from form.
    • You can keep the value in a hidden field and then post it.
    • You can pas the values as the parameter for the controller function.
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 C语言代码改正特征选择算法设计,贝叶斯决策,,设计分类器
  • ¥15 String 类valuve指向的问题
  • ¥15 在ros2的iron版本进行编译时遇到如下问题
  • ¥18 vs用setup project打包项目实现安装完立即运行
  • ¥15 孟德尔随机化TwoSampleMR在线提取结局数据,遇到Error in check_reset(override_429)的问题
  • ¥15 ONNX转RKNN遇到问题
  • ¥60 以太网电缆未接通怎么处理
  • ¥15 关于超声图片进行放射组学的疑问
  • ¥20 已经有功率放大电路图,具体每个元器件的参数怎么算?
  • ¥15 用GIS怎么提取出一个城市的中心城区
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部