<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>show</title>
</head>
<body>
    <center>
    <table>
    <?php foreach ($data as $k => $v): ?>
    <tr>
      <td><input type="checkbox" class="checkbox" name="checkbox" value='<?=$v['id']?>'></td>
      <td><?=$v['title']?></td>
    </tr>
    <?php endforeach ?>
    </table>
        <input type="button" value="全选" >

相关文章:

  • 2022-03-06
  • 2021-08-06
  • 2022-02-08
  • 2021-07-24
猜你喜欢
  • 2022-12-23
  • 2021-06-04
  • 2022-12-23
  • 2022-12-23
  • 2021-09-15
  • 2021-07-21
  • 2021-09-17
相关资源
相似解决方案