我试图创建一个“喜欢”和“不像”的链接,但我不能。
知道怎么做吗?这是我的代码:
<a class="likes" href="#" id="<?php echo $totallikes; ?>" >
<?php
if($numlikes==0){
$comments .= <<<EOD
<table border='0' style='display:inline-table;'>
<td>
<h2><font size='2' style='margin-left:0px;'>Like</font></h2>
</td>
</table>
EOD;
}else if($numlikes==1){
$comments .= <<<EOD
<table border='0' style='display:inline-table;'>
<td>
<h2><font size='2' style='margin-left:0px;'>Unlike</font></h2>
</td>
</table>
EOD;
}
?>
</a>
答案 0 :(得分:1)
答案 1 :(得分:1)
您可以尝试:
}否则if($ numlikes&gt; 0){