Ok your right. I had the whole thing wrapped in a p tag and that was making it display vertical.
This is the correct code.
<?php
foreach($xml->Foods->Food as $Food){
$title = $Food->Title ;
?>
<table width="100%" border="0" cellspacing="0" cellpadding="1">
<tr>
<td><?php echo $title; ?></td>
</tr>
</table>
<?php } ?>
This displays the tables vertically. How can I make them display horizontal?