我知道我在这里犯了新手的错误,我需要做一个变数才能向前传递,尽管我不确定如何接近这个变数,而上网搜索图纸也无济于事。 如果有人能指引我走正确的方向,我会非常感激。
我希望将结果反馈到一个数组中。 也就是说, 将 xmlurl 列字段从 xml 表格显示在 $rss 数组中。 我希望这有道理 。
// Get URLs from Database
$result = mysql_query("SELECT * FROM xml");
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
printf(" %s ,", $row["xmlurl"]);
}
mysql_free_result($result);
// Take the URLs (xmlurl) and place them in an array
$rss = array(
http://www.xmlurl.com.au ,
http://www.xmlurl.com.au
);