我有这段代码:
<?php include("Hedar.php"); ?>
<?php
$q=mysql_query("select * from news2 where id = $news2_id ");
list($news2_ides,$news_id,$name,$text,$stext,$ktext,$dtext,$date,$vews,$path)=mysql_fetch_array($q);
?>
<img src="upload1/<?php echo $path ?>"/>
<h2 class="_title"><?php echo $name ?></h2>
<?php echo $text ?>
<?php include("Footers.php"); ?>
------------
所以你可以看到我有一个PHP代码的网站 所以我想在$ text中插入2个adsense代码 我试图将这个$ text分隔给很多
,但我失败了
所以任何人都可以帮我分开这个(<?php echo $text ?>
)
非常感谢
此致
答案 0 :(得分:0)
如果你是对的,你想用$ text变量显示adsense代码 所以你这样做:
<?php
$text.=$adsense
echo $text;
?>
如果您将adsense代码存储在$ adsense变量
中