I have tried stylesheets, font etc etc nothing seems to work, specifically inside the loop (highlighted): If I put the font tag or style tag or css anywhere else, it works fine. I tried, also putting in the font size change just before the loop (in italics), and this actually changed the font size for everything AFTER the loop??
Please help!!
<form name="preferences" method="post" action="submit_auto.php" onsubmit="return submitForm();">
<p style="margin-left: 2em;"><font face="Arial, Helvetica, sans-serif"> <br>
Where would you like to go for Shabbos?<br><table border=0 class="cities"></font><tr>
[I]<p style="margin-left: 2em;"><font face="Arial, Helvetica, sans-serif">[/I] <br>
<?
$city_r=mysql_query("SELECT cities.name, cities.ID,cities.location,count(hosts.city) as num FROM cities,hosts where cities.id=hosts.city and hosts.status=0 and cities.name NOT LIKE 'Default' group by hosts.city ORDER BY cities.location,cities.name");
$last=null;
[B]while($city=mysql_fetch_assoc($city_r)){
if($city['location']!=$last){
$last=$city['location'];
echo "<td valign='top'><center><b>{$city['location']}</b></center>";
}
echo "<input type='checkbox' name='city[]' value={$city['ID']}";
if ($city['name'] == $_GET['c']) echo " CHECKED";
echo "> ".$city['name']." ({$city['num']} host";
if($city['num']!=1) echo "s";
echo ") <br>";
}//end loop cities[/B] ?>
</tr></table>
</p>
<p style="margin-left: 2em;"><font face="Arial, Helvetica, sans-serif">Which Shabbos? <?php
echo date("M j",week($wk));
echo "<input type='hidden' name='date' value=".week($wk).">";
echo "<input type='hidden' name='weeks' value=".date("W",week($wk)).">";
?>