<li class="last">
<h2>Info Penerimaan Mahasiswa Baru 2012/2013</h2>
<div class="imgholder"><img src="<?php echo base_url().'images/'; ?>0708111913_maba.jpg" alt="mahasiswa baru" style="width:240px;height:130px;" /></div>
<?php
if ($ag_2->num_rows() == 0)
{
echo "Tidak ada agenda";
}
else
{
$row = $ag_2->row();
$texts = $row->texts;
$postname = $row->postname;
echo word_limiter ($texts, 30);
?>
<p class="readmore"><a href="<?php echo base_url().index_page().'/post/read/'.$postname; ?>">Baca selengkapnya »</a></p>
<?
}?>
</li>
</ul>
<br class="clear" />
</div>
问问题
6171 次
1 回答
4
就像 DaveRandom 和 Blaine 所说,尝试以下任一方法:
- 替换
<?
为<?php
- 启用
short_open_tag
(请参阅此处的答案以在 XAMPP 中执行此操作)
于 2012-08-06T16:24:38.607 回答