0

我在 php 中使用这个脚本。我已成功添加了 readmore 选项,但我希望任何单击此链接的用户都将打开一个包含完整文章和图库图片的新页面。但我希望它打开到同一个窗口。

echo "<div id=message>";
$text = $row["message"]; 
<?php echo substr($text,0,500);?>
<a href="#"?id=<?php echo $row['id']?> title="Full Story Of <?php echo $row['title']?>">Read More &raquo;</a>
4

1 回答 1

0

请尝试以下方法:

echo "<div id=message>";
$text = $row["message"]; 
<?php echo substr($text,0,500);?>
<a href="readmorepage.php?id=<?php echo $row['id']?>" title="Full Story Of <?php echo $row['title']?>" target="_self">Read More &raquo;</a>

虽然 _self 是相同的默认值,所以你不需要写它。

于 2013-03-26T06:09:48.927 回答