I am trying to put rows from my database to a select
this is the code,
<select name='network' id='network'>
<option selected>None</option>
<?php
$query = mysql_query("SELECT * FROM `countries` ");
while($row=mysql_fetch_array($query))
{
echo $row['name'].'<br>';
}
?>
</select>