我正在按数据表显示表。因此,我的数据库表中有一个group_concat()
列,其中包含多个图像文件。我想在datatable
中将其显示为单列。当我给出普通语法时,它不起作用。有人帮忙吗?
我越来越喜欢
但是我想要这样的东西,在图片列中包含所有多个图像
这是我给出的用于显示数据表的脚本代码
<script type="text/javascript">
$(document).ready(function() {
$('#dis').dataTable( {
"lengthMenu": [[2,5,8,10, 25, 50, -1], [2,5,8,10, 25, 50, "All"]]
} );
} );
</script>
这是获取表的mysql查询:
<?php
$conn =mysqli_connect("localhost", "root", "", "project");
$sql="SELECT product.*,images.*, group_concat(images.image) as imag FROM product INNER JOIN images on product.ppid=images.pid group by product.ppid";
?>
这是表格的详细信息:
<table id="dis" class="display" style="width:100%">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Product Description</th>
<th>Category</th>
<th>Subcategory</th>
<th>Images</th>
<th>Edit</th>
</tr>
</thead>
<?php
$result = mysqli_query($conn, $sql);
foreach($result as $row)
{
?>
<tr>
<td><?php echo $row['ppid'];?></td>
<td><?php echo $row['pname'];?></td>
<td><?php echo $row['prodes'];?></td>
<td><?php echo $row['cat'];?></td>
<td><?php echo $row['sucat'];?></td>
<?php
foreach(explode(',',$row['imag']) as $url)
{?>
<td>
<?php $imageURL = 'pictures/'.$url;?>
<img src="<?php echo $imageURL; ?>" alt="" width="100" height="100" /><br>
<?php $t= $row['id'];?>
<a href="dele.php?id=<?php echo $t ; ?>">Delete </a>
</td>
我已经包含了所有脚本,CSS链接...。因此,我如何才能将其作为数据源
答案 0 :(得分:0)
请尝试以下操作:
在您的代码中,您正在<td>
循环中重复foreach
。
您必须将<td>
标签放置在foreach循环之外
<td>
<?php
$img_arr = explode(',',$row['imag']);
if(!empty($img_arr)){
foreach($img_arr as $url)
{
$imageURL = 'pictures/'.$url;
$t= $row['id'];?>
<img src="<?php echo $imageURL; ?>" alt="" width="100" height="100" /><br>
<a href="dele.php?id=<?php echo $t ; ?>">Delete </a>
<?php
}
}
?>
</td>