Log in

View Full Version : Creation Of HTML Display Table


Masked Crusader
04-08-2008, 10:00 PM
Hey guys.

So here is the breakdown on what I am trying to do.

1) SQL Query goes and retrieves Top 10 item_id rows.
2) PHP creates a table to display the data in and then fills the table until there is no more rows left to fill.
3) HTML page calls the PHP page via javascript to display the table.

Here is the SQL Query/PHP code:

<?php
// hostname or ip of server
$servername='localhost';

// username and password to log onto db server
$dbusername='********';
$dbpassword='****';

// name of database
$dbname='*******';

////////////// Do not edit below/////////

connecttodb($servername,$dbname,$dbusername,$dbpas sword);
function connecttodb($servername,$dbname,$dbuser,$dbpasswor d)
{
global $link;
$link=mysql_connect ("$servername","$dbuser","$dbpassword");
if(!$link){die("Could not connect to MySQL");}
mysql_select_db("$dbname",$link) or die ("could not open db".mysql_error());
}
else
{
$toptenquery="SELECT Top 10 item_name, item_buyer, item_value FROM eqdkp_items SORT BY item_id DESC";

// open the table and print a header row.
echo "<table align=right width=500>"
echo "<tr><th>Latest Loots</th></tr>\n";
if ($result=mysql_query($sql))
{
while ($row=mysql_fetch_row($result))
{
echo "<tr><td>".$row[0]."</td></tr>";
}
} else {
echo "<!-- SQL Error ".mysql_error()." -->";
}
echo "</table>";
}

?>


Here is the code to call the PHP page via the header template:

<script language="JavaScript" type="text/javascript" src="./datacall.php"
<script>


The goal of all of this is to have the top 10 items display in a table in the top right hand corner of the page (in the header).

Where in the header template code would this <script> code go?

The link to my site is: www.ep-guild.com and www.ep-guild.com/eqdkp

Thanks for your help and time.