我有一个新闻脚本,我想从数据库中获取类似的新闻
任何帮助
我有这个
table => news
fields => id, title, news
我用了这段代码
$select = $mysqli->query("SELECT * from news WHERE title LIKE '%$title%' LIMIT 4 ");
$num = $select->num_rows;
while ($rows = $select->fetch_array(MYSQL_ASSOC)){
$id_news = $rows ['id'];
$title_news = $rows ['title'];
$news_news = $rows ['news'];
echo '<a href="'.$id_news.'">'.$title_news.'</a>';
}
但我认为这是为了搜索,但我没有得到想要的结果
从数据库中获取类似新闻的任何其他代码
谢谢