Hello All
I'm using the following PHP code to build a table. The code gets called from an html script and the table is displayed on an html web page.
However, I want to center the table in the middle of the page, but I can't work out what the code is. I've tried allign="center" in the table options besid where I set the "border" but it doesn't seem to work.
Anyone any ideas...?
Here's the code i'm using
print "<table border=1>\n";
print "<td><b>Position</b></td>\n";
print "<td><b>User ID</b></td>\n";
print "<td><b>First Name</b></td>\n";
print "<td><b>Last Name</b></td>\n";
print "<td><b>Team Name</b></td>\n";
print "<td><b>Points Name</b></td>\n";
print "</tr>\n";
print "</table>\n";