Positionng with CSS and PHP

This tute assumes you have knowledge of absolute positioning with CSS already. If you have access to PHP on your server you can easily use it with HTML and CSS to position many tables of the same code without having to put the code on the page more than once. Here is a sample page.

The rules are these:

See it all on this page:

Further you can add PHP loops to your code between the div tags so that it will print out the code more than once in a div tag. Here is a sample code:
<div id = "P">
<?php
$i=0;
$count=5;
while($i<$count){
$i++;
echo $ball;
}
?>
</div>
This code tells the server to print the code five times. I put this code in the bottom row of the previous table and now it looks like this.