使用php mysql自定义数据库查询

时间:2015-04-25 03:12:23

标签: php mysql

我已经建立了一个名为0news的数据库和表 我在桌子上插了1000个文章。

我可以从数据库查询文章,但它在我的浏览器上显示完整的文章,现在我想显示只有100个单词的文章,然后带有“阅读更多”按钮。
当阅读更多按钮将被点击时,完整的文章将显示另一页。

2 个答案:

答案 0 :(得分:0)

Select substring(detail, 1, 100) from articles

假设“详细信息”是表格“文章”中的一列

答案 1 :(得分:0)

试试这个

$word = strip_tags($word); // strip tags to avoid breaking any html

if (strlen($word) > 100) 
{    
    $wordCut = substr($word, 0, 100); // truncate string
    $word = substr($wordCut, 0, strrpos($wordCut, ' ')).'... <a href="/this/story">Read More</a>'; // make sure it ends in a word so assassinate doesn't become ass...
}
echo $word;