I am a newbie to AJAX. Here is my problem, I have a table already built in HTML as follows on page -1.
My table is fixed length so I do not have to worry about building dynamically it using echos in page-2.
Page-1 calls Page-2 with a xmlhttprequest; which works fine.
…
Page-1
row 1, cell 1 | row 1, cell 2 |
row 2, cell 1 | row 2, cell 2 |
…
MySql gets used here, which works fine.
…
…
echo… print or write or whatever $my_mysql_ whatever_variable to cell12 ( or any cell), etc,etc,etc…<<<<<<<<<<<…this the line I really need help with.
Notice that cell12 and the other 3 cells already exist and just need to be populated.
Thanks