如何通过阅读更多链接呼吁下一页

时间:2013-03-26 05:40:10

标签: php html find

我在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>

1 个答案:

答案 0 :(得分: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是默认值,但你不需要写它。