|
Actually, I need to get the data from the database in my web page (either ASP, JSP or PHP). With the data, i need to do processing using javascript with DHTML
e.g.
document.getElementById("flightID" + pageRow).filters.revealTrans.apply();
document.getElementById("flightID" + pageRow).filters.revealTrans.play();
document.getElementById("flightID" + pageRow).innerText= flights[flightArrayIndex[row]];
The data from the database is big. I need to put these data into 10 rows of the table.
Now, in order to show 10 rows of data at a time without a TOTAL PAGE REFRESH of the web browser, i need to replace each content of the table from the data in the database.
Please advise on how to solve this problem
thanks
chris
|