如何使用div或网页上的某个东西为Google adsense广告创建垂直空间,我想在表格的左侧和右侧添加垂直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>
最佳答案
您可以使用引导程序列系统并添加如下代码:
<div class="container">
<div class="row">
<div class="col-sm-3"><!-- ad sense --></div>
<div class="col-sm-6"><!-- your table content --></div>
<div class="col-sm-3"><!-- ad sense --></div>
</div>
</div>