【发布时间】:2020-02-26 05:37:16
【问题描述】:
如何在我的网页上为 google adsense 广告创建带有 div 或其他内容的垂直空间,我想在表格的左侧和右侧添加垂直 adsense 广告,请参见下图: https://ibb.co/LNg52NJ
您可以在此处查看实时版本或检查代码: https://translatesubtitles.com/browse_subtitle.php
这是表格代码:
<div class="row">
<table id="example" data-order='[[ 0, "desc" ]]' class="table table-striped " style="width:100%">
<thead>
<tr>
<th style="display: none">ID</th>
<th>Name</th>
<th>Language</th>
<th>Author</th>
</tr>
</thead>
<tbody>
<?php
include("sad.php");
$query = "SELECT * FROM me order by id DESC";
$result = mysqli_query($conn, $query);
if(mysqli_num_rows($result) > 0){
while($row = mysqli_fetch_array($result)){
?>
<tr>
<td style="display: none"><?php echo $row['id']; ?></td>
<td><a href="ed.php?id=<?php echo $row['id']; ?>"><?php echo $row['name']; ?></a></td>
<td><?php echo $row['language']; ?></td>
<td><?php echo $row['author']; ?></td>
</tr>
<?php }} ?>
</tbody>
</table>
</div>
【问题讨论】: