CSS数据标记,值不出现在数据库中

时间:2017-04-23 13:28:25

标签: php html css

我在welcome.php中有这个列表

<li>
                       <a href="#" class="badge1" data-badge="<?php echo "$row_cnt"; ?>" value = "<?php echo "$row_cnt"; ?>"><img src="images/referral.png" > Referral</a>
                    </li>

这里我试图用数据库中的值填充圆圈。我得到了正确的价值,但它没有出现在圈子里。请原谅我的CSS。 从此处http://www.cssportal.com/blog/create-css-notification-badge/

复制此代码

在相同的welcome.php中,CSS代码是

 .badge1 {
position:relative;
}
.badge1[data-badge]:before {
 content:attr(data-badge);
 position:absolute;
 top:0px;
 right:0px;
 font-size:.7em;
 background:green;
 color:white;
 width:18px;height:18px;
 text-align:center;
 line-height:18px;
 border-radius:50%;
 box-shadow:0 0 1px #211;
 }

我试图回复的php值来自此代码后的php块。 代码是:

<html><li>
<a href="#" class="badge1" data-badge="<?php echo "$row_cnt"; ?>" value = "
<?php echo "$row_cnt"; ?>"><img src="images/referral.png" > Referral</a>
                    </li>
</html>

<?php 
// Get $row_cnt
?>

那么如何访问上面的$ row_cnt值?

任何帮助都会有所帮助。

2 个答案:

答案 0 :(得分:0)

你不能把“里面”放在里面,所以在它之前使用escape \ 或者在变量

之前将其删除

答案 1 :(得分:0)

删除引号:

<?php echo $row_cnt; ?>

甚至

<?=$row_cnt?>