如何在php中动态获取特定行数据

wswtfjt7  于 2021-06-21  发布在  Mysql
关注(0)|答案(0)|浏览(189)

开发人员,我正在开发一个学校管理系统,我把许多数据放在数据库中,我也能从表中提取每个数据

<table class="table table-hover table-bordered">
            <thead>
                <tr>
                    <th>Sr.</th>
                    <th>Pic</th>
                    <th>Registration Number</th>
                    <th>Name</th>
                    <th>Father Name</th>
                    <th>Class</th>
                    <th>CNIC</th>
                    <th>More</th>
                </tr>
            </thead>
            <tbody>
            <?php $q=mysqli_query($dbc,"SELECT * FROM students WHERE class='Play Group'");
                    if ($r=mysqli_num_rows($q)>0 )?>
                        <?php while ($r=mysqli_fetch_array($q)): ?>
                <tr>
                    <td><?=$r['students_id']?></td>
                    <td><img width="40" class="img img-circle" src="uploads/<?=$r['students_pic'];?>" alt=""></td>
                    <td>LSPS-10<?=$r['students_reg']?></td>
                    <td><?=$r['students_name']?></td>
                    <td><?=$r['fname']?></td>
                    <td><?=$r['class']?></td>
                    <td><?=$r['cnic']?></td>
                    <td>
                        <a class="label label-primary" data-toggle="modal"  data-target="#modal-id">View</a>    
                             <div class="modal fade" id="modal-id">
                                <div class="modal-dialog">
                                    <div class="modal-content">
                                        <div class="modal-header">
                                            <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                                            <h4 class="modal-title">Full Record</h4>
                                        </div>
                                        <div class="modal-body">
                                        <h1>Ok</h1>
                                        </div>
                                        <div class="modal-footer">
                                            <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                                        </div>
                                    </div>
                                </div>
                             </div>      
                    </td>
                </tr>
            <?php endwhile ?>
            </tbody>
            </table>

但是我现在要提取那些数据中的一些列,我想在动态创建的模式中提取其余的列,换句话说,我在表列中提取一半的数据,在模式中提取表中的其他数据。我的问题是如何在模式中提取列的其余部分与数据并行,这意味着当有人触发模式时,单击id的所有数据已获取已获取的模态。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题