I wish to use iframe with php to apply to my system. Firstly I will talk about what kind of page I wanted. I have a page showing the real time information. It use table to arrange the data, something like stock list. It got a countdown timer to refresh the data after 20 second. It only refresh the data, not reload the page.
From my opinion ( I don’t know correct or not ), it use iframe with php in the page,
test.html
<iframe name="testFrame" id="testFrame" scroll="no" src=""></iframe>
<a href="execute.php" target="testFrame">Test it out</a>
In execute.php file, it got a countdown timer also, maybe 10 second refresh a time to get the latest data, then post back to test.html without display the data directly. The countdown timer in test.html will refresh the data in the table after 20 second. Maybe add more rows or changing the data.
Anyone have face this kind of problem? Any comment can give me?
Thank to all for reply.