Hi guys,
I've been struggling for days now with this issue and maybe I'm just not approaching the problem from the right angle.
Here is what I want to do in my project (which is an online psychological experiment):
I'm trying to build a big table about 100 100 big. something that will look like this http://www.smilebga.com/test.php (this is a smaller version 1010). The user will choose a cell and then assign it a certain color.
However, because a 100 * 100 table is too big to show on the screen properly, I thought about presenting it as a series of 9 image snapshots. Somthing like this:
block 1 block 2 block 3
block 4 block 5 block 6
block 7 block 8 block 9
Only when the user will clink on one of the block's image he will be directed to an php page that will actually present the real table.
In order to achieve what I had in mind I figure I need to do the following steps:
A php page draw the data about the table from the database, and construct the table block (9 in total).
Conversion of each table to an image
Assemble these images in a table in another php page which the user will actually see.
I figured out stages 1 and 3 without any serious difficulties, but I am stuck in stage 3. The method I tried to use in this case were converting the php table to a pdf using html2pdf but that fails since I'm only getting a black page.
Would really appreciate your help on this and any other suggestion of achieving my project goals.
Thanks