I am trying to print out rows of images and pieces them to form a bigger map but having a little trouble printing out correctly.
I am doing the following...
A numbered text file with rows of numbers like these:
33.txt
The number represent different area and the number in the text file represent each individual pieces of that particular area. the number of rows and columns are arbitrary.
Example:

Here is my code at the moment but there is something wrong in it as I can't seems to correctly print everything out...
I am doing the following...
A numbered text file with rows of numbers like these:
33.txt
Code:
48,48,49,49,48,47,48,49,48,50,50,48,50,49,48,49,49,49 49,11,4,8,50,11,4,4,8,48,11,4,4,8,48,11,8,50 ...
Example:


Here is my code at the moment but there is something wrong in it as I can't seems to correctly print everything out...
PHP Code:
<?php
$file = file_get_contents("33.txt"); // can be any numbered text files
$entries = explode("\n", $file);
echo "Entries <br /><hr />";
for($i=0;$i < sizeof($entries);$i++){
for($j=0;$j < sizeof($entries);$j++){
$data = explode(",", $entries[$j]);
echo "<td align=\"center\" background=\"test/33_";
echo $data[$j];
echo ".gif\" width=\"65\" height=\"65\">
<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"65\" height=\"65\">
<tbody><tr>
<td>
<center></center>
</td>
</tr></tbody>
</table>
</td>";
}
}
?>
Comment