Well, what is so frustrating about that?
I mean c'mon... could you give a better explanation? What kind of data are you fetching out? Where does data come from? things like that...
If you are getting data out of a database, populating html tables is easy.
$conn=mysql_connect("localhost", "root"); \<b>connect to database</b>
$db=mysql_select_db("mydatabase", $conn); \<b>select your database</b>
$sql="select from yourtable yourdata"; \<b>initialize your query statement</b>
$result=mysql_query($sql, $conn); \<b>query the databae</b>
<b>Now we are going to fetch data out of $result into an html table:</b>
echo "<table border=2>";
while($res=mysql_fetch_array($result))
{
echo "<tr><td>$res["data1"]</td><td>$res["data2"]</td></tr>";
}
echo "</table>";
Something like that...
Di