I'm very new to PHP or any type of web programming for that matter. I need the to put the following script into two columns or possibly a table with two columns. I need Fahrenheit as the heading for one column and celsius as heading for the other? It took me all night to just get what I have and my brain can't take anymore.Respectfully
<?php
$fTemp = 0;
while ($ftemp <= 100)
{
$cTemp = ($fTemp - 32) * .55;
echo $fTemp. " Fahrenheit is equal to ".$cTemp."
Celsius<br />";
$fTemp++;
}
?>