由于我添加了加密密码,当我的程序显示存储在我的数据库表中的所有信息时,我的视图文件中的表不再响应。我认为这是因为加密密码太长了..但我不知道该如何解决这个问题
看看:
这是我的观点文件:
<?php include('header.php'); ?>
<html>
<head>
<link rel="stylesheet" href="<?php echo base_url('../resources/css/bootstrap.min.css'); ?>"/>
<link rel="stylesheet" href="<?php echo base_url('../resources/css/bootstrap.css'); ?>"/>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 align="center">TABLE:USER</h2>
<a href="<?php echo site_url('login/add') ?>">ADD</a>
<table class="table table-hover" align="center" border="1" cellspacing="0" cellpadding="0" width="700" id="tabla_busqueda">
<thead>
<th>id</th>
<th>User</th>
<th>Name</th>
<th>Lastname</th>
<th>Password</th>
<th>Type</th>
<th>Status</th>
<th>Date</th>
</thead>
<tbody>
<?php
if (count($records) > 0 && $records != false)
{
foreach($records as $record) {
echo "<tr>
<td>".$record['id']."</td>
<td>".$record['username']."</td>
<td>".$record['name']."</td>
<td>".$record['lastname']."</td>
<td>".$record['password']."</td>
<td>".$record['type']."</td>
<td>".$record['status']."</td>
<td>".$record['date']."</td>
</tr>";
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>
希望你能帮帮我..
答案 0 :(得分:1)
首先,我会避免使用表格,特别是当你似乎想要使用Bootstrap来获得响应式布局时。至于加密密码,表正在完成它的工作(将cols扩展到正确的大小)。
我不明白你想要完成什么,也不知道问题是什么。但是,如果您只想要一个更窄的列,我建议使用substr来缩短,然后可能会将一个&#34;副本添加到剪贴板&#34;缩短字符串旁边的功能。例如clipboardjs。只是一个建议。