我只是显示一个新闻提要,我的问题是我想允许用户对项目进行评分。我读到我需要将它们存储在数据库中如果我想对其进行排名,但是如何?这是我的代码:
$data = file_get_contents('https://news.google.com.mx/news/feeds?hl=es&gl=us&q='.tennis.'&um=1&ie=UTF-8&output=rss');
$xml = new SimpleXMLElement($data);
$channel = array();
$channel['title'] = $xml->channel->title;
foreach ($xml->channel->item as $item)
{
echo $article['pubDate'] = $item->pubDate;
echo $article['description'] = (string) trim($item->description);
}
有人可以给出如何做到这一点的想法吗?我想我应该阅读然后插入数据库,然后我不知道。我需要为排名设计表格。有什么好的教程吗?