-4

我正在尝试创建一个博客类型系统,您可以在其中单击其中一个博客条目的标题,您将被重定向到整篇文章。我正在使用 substr 来显示部分文章。问题是 a href 标签没有做任何事情,因此读者无法阅读全文。如果有人可以提供帮助,那就太好了。

<?php   
$dbinfo = "SELECT title, date, body FROM content ORDER BY blog_id DESC";
$result = mysql_query($dbinfo);

while($data=mysql_fetch_row($result)){
echo substr("<h1>$data[0]</h1><br> <b>$data[1]</b><br> $data[2]", 0, 97)." ... "." read more<br><br><hr>";
echo '<a href="index.php?id=' . $result['blog_id'] . '">' . $result['title'] . ' </a>';
}
?>
4

1 回答 1

0

亲爱的你不能使用 $result['blog_id']

你必须使用 $data[index] 并且索引必须是 0 或 1 或 2 ...

<?php
$dbinfo = "select blog_id,title,date,body from content order by blog_id DESC"

$result = mysql_query($dbinfo) or die("cann't execute query");

$num = mysql_num_rows($result)
$i=0;

while($i < $num)
{
$blog_id = mysql_result($result,$i,'blog_id');
$title = mysql_result($result,$i,'title');
$date = mysql_result($result,$i,'date');
$body = mysql_result($result,$i,'body');

$i++

echo '<h1>'.$title.'</h1><small> ('.$data.') </small>';
echo '<p>'.substr($body,0,100).'<p>';
echo '<a href"index.php?id='.$blog_id.'"> Read More </a>';
}
?>

但亲爱的我不喜欢在这里做 substr 我更喜欢做某种文本摘要算法看看这里 http://www.binpress.com/app/php-summarizer/87 http://www.tools4noobs。 com/总结/脚本/

如果你不想进行总结,你可以使用 explode 和 implode 函数来获取特定数量的单词并显示它们

于 2013-06-12T11:52:37.227 回答