doudui2229 2015-02-03 02:25
浏览 52
已采纳

Codeigniter:将数据从视图传递到控制器

This is my view code:

<p align="center"; style="font-size:22px">Database books</p>
        <table>
      <tr>
        <th>Book ID</th>
        <th>Book Name</th>
        <th>Description</th>
        <th>Author</th>
        <th>Publisher</th>
        <th>Pages</th>
        <th>Publication Date</th>
        <th>Price</th>
        <th>Status</th>
        <th>Quantity</th>
        <th>Genres</th>
        <th>User Rating</th>
        <th>Reviews</th>
        <th>Edit</th>
      </tr>
      <?php foreach($books as $book) { ?>
      <tr>
        <td><?php echo $book->book_id ?></td>
        <td><?php echo $book->book_name ?></td>
        <td><?php echo $book->description ?></td>
        <td><?php echo $book->author ?></td>
        <td><?php echo $book->publisher ?></td>
        <td><?php echo $book->pages ?></td>
        <td><?php echo $book->publication_date ?></td>
        <td><?php echo $book->price ?></td>
        <td><?php echo $book->status ?></td>
        <td><?php echo $book->quantity ?></td>
        <td><?php echo $book->genres ?></td>
        <td><?php echo $book->user_rating ?></td>
        <td><?php echo $book->reviews ?></td>
        <td><a href="<?php echo base_url(); ?>admin/edit_data">Edit</a></td>
      </tr>
      <?php } ?>
    </table>

May i know how do i pass data from my view to my controller, as i would like to pass the information to my edit page. I am trying to search on passing variable using anchor tag, however i am getting information on using GET and POST only are there any other ways?

  • 写回答

2条回答 默认 最新

  • dqsa17330 2015-02-03 04:21
    关注

    Change the href link to

    href="<?php echo base_url(); ?>admin/edit_data/<?php echo $book->book_id ?>"
    

    Then you can get the book id on your controller function edit data

    function edit_data($bookid) {
    
        //you can use $bookid to fetch data from db
    
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据