Hmm not sure what I'm doing wrong but none of that worked (at leaset the way I was expecting it to ...)
The change in quote style was possible but the attepmt to re structure the code would break.....!
anyone else have any ideas?
Current PHP looks like this
Returns info but paragraphs ignored...
<?php
$db = mysql_connect("localhost", "root","sba5098");
mysql_select_db("website1",$db);
$result = mysql_query("SELECT * FROM data1",$db);
echo "<TABLE>";
while($myrow = mysql_fetch_array($result))
{
echo "<TR width='70%'><TD td align='left' valign='top' >";
echo $myrow['tag'];
echo "<br><br>";
echo $myrow ['body'];
echo "<TD td align='right' valign='top'>";
echo "<br<br>";
echo $myrow['pic'];
echo "<TD td align='right' valign='top'>";
}
echo "</TABLE>";
echo "<br><br>Put link in eventualy to start and find all";
?>