|
Choose a Moreover Feed
In this example we will allow a user to choose
which news feed they wish to view from moreovers list of XML
feeds . In this example we have only shown 10 but in theory
you could put the whole lot of the ones that are available .
You can view available feeds here . List
of available feeds
First we will build a simple form with our selections
<form action = "showfeeds.php"
method = "post">
<table>
<tr><th>Moreover news feed selector</th></tr>
<tr><td>
<select name="feeds">
<option selected value ="webmaster">Webmaster
tips</option>
<option value = "webdev">Web developer</option>
<option value = "software">Software Downloads</option>
<option value = "coolsite">Cool sites</option>
<option value = "search">Search engine news</option>
<option value ="topnews">Top stories</option>
<option value = "opensource">Open source</option>
<option value = "java">Java</option>
<option value = "graphics">Graphics</option>
<option value = "comgames">Computer games</option>
</select>
</td></tr>
<tr><td>
<input type = "submit" value = "Show my news
feed">
</td></tr>
</table>
</form>
And here is the form to try out .
|