douhoushou8385 2015-09-30 07:44
浏览 34
已采纳

如何创建一个在codeigniter中创建用户的操作按钮?

I have three users Admin,Reseller and Users. Now Reseller request to admin that he want XYX number of users.

This is saved in a table called User_request Now in admin there is a view where he can see which reseller has requested how many users.

And there is a button Approve or Reject. If Admin hits approve then I want my code to create that much users for that reseller. Now each users is mapped to his/her reseller by a field called key which is unique.

So, when users is created it must store the key of reseller in users table.

Add Users

Now, if approves users that request by re-seller must be deleted. I am very confused what I should be doing here!

The View :

  <div class="row">
            <div class="col-lg-12">
                <div class="panel panel-info">
                    <div class="panel-heading">
                      <h4>New User Requests</h4>
                    </div>
                    <!-- /.panel-heading -->
                    <div class="panel-body">
                        <div class="dataTable_wrapper">
                            <table class="table table-striped table-bordered table-hover" id="dataTables-example">


                                <thead>
                                    <tr>
                                        <th>Id</th>
                                        <th>Users Requested</th>
                                        <th>Unique Id</th>
                                        <th>Date Of Request</th>
                                        <th>Approve</th>
                                        <th>Reject</th>
                                        <th>Status</th>
                                    </tr>
                                </thead>


                               <!-- This is where we fetch all records-->

                                <tbody>

                                <?php if(count($users)): foreach($users as $user): ?>

                                    <tr class="odd gradeX">
                                        <td><?php echo  $user->id; ?></td>
                                        <td><?php echo $user->id, $user->user_requested; ?></td>
                                        <td><?php echo $user->id, $user->key; ?></td>
                                        <td><?php echo $user->id, $user->date_requested; ?></td>
                                        <td><a href="reseller/create_user" class="btn btn-primary">Yes&nbsp<i class="glyphicon glyphicon-ok"></i></a></td>
                                        <td><a href="reseller/change_status" class="btn btn-danger">No&nbsp<?php echo'<i class="glyphicon glyphicon-trash"></i>';?></a></td>
                                         <td><a href="" class="btn btn-success"><?php echo  $user->status; ?></td>&nbsp</a></td>

                                    </tr>








                                    <?php endforeach; ?>
                                    <?php else: ?>
                                        <tr>
                                            <td colspan="3">We could not find any users.</td>
                                        </tr>
                                    <?php endif; ?> 



                                </tbody>
                            </table>
                        </div>
                        <!-- /.table-responsive -->

                    </div>
                    <!-- /.panel-body -->
                </div>
                <!-- /.panel -->
            </div>
            <!-- /.col-lg-12 -->
        </div>

The Controller:

      public function create_user()
      {


        $this->load->model('more_m');

        $id = $this->session->userdata('id');

            $this->db->set('status', "'approved'",FALSE);
            $this->db->where('id',$id);
            $this->db->update('user_request');

            redirect('admin/new_user');

      }

Now, I just want to add the code to creates users for the requested Reseller.

  • 写回答

1条回答 默认 最新

  • dongyi6845 2015-09-30 11:37
    关注

    I have succeeded to accomplish this :

          public function create_user()
          {
    
    
                $this->load->model('more_m');
                $id= $this->session->userdata('id');
                $rajan =$this->more_m->get(array('user_requested',$id));
                $request=$rajan->user_requested;        
    
    
                $this->load->model('reseller_m');
    
                $query=$this->db->select('key');
                $query=$this->db->get('reseller');
    
                if($query->num_rows() > 0)
                {
                    $row = $query->row_array();
                    $key= $row['key'];
                }
    
    
    
    
    
                        for($i=1; $i<=$request;$i++)
                            {
    
                            $userdata=array('key'=>$key);
    
                            $this->db->insert('users',$userdata);
    
                            }
    
    
    
    
    
    
                $this->load->model('more_m');
                $id = $this->session->userdata('id');
                $this->db->set('status', "'approved'",FALSE);
                $this->db->where('id',$id);
                $this->db->update('user_request');
    
                redirect('admin/new_user');
    
          }
    

    Firstly I fetch how many users are required then the key and finally loop them and insert the users along with reseller key

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵