我在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 »</a>
答案 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 »</a>
虽然_self是默认值,但你不需要写它。