http://www.google.com/search?q=%3Ciframe%3E+refresh
You should be able to find all your answers there, and it's much more concise than posting a bunch of URLs. :) Edward Dudlik Becoming Digital www.becomingdigital.com ----- Original Message ----- From: "ascll" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, 27 September, 2003 02:43 Subject: [PHP] How to "smart refresh" php section using iframe? Greetings, I'm newbie in php and I would like to develop a .php page that constantly retrieves data from MySQL database, but I having difficulties to doing so. Please show me the complete code, if possible. Thanks in advance. ===== index.php ===== <html> <body> <table> <!-- // SECTION A // ========= // Load one only, no need to refresh --> <tr> <td>Column1</td> <td>Column2</td> <td>Column3</td> <td>Column4</td> <td>Column5</td> </tr> <!-- // SECTION B // ========= // Using .php to retrieve data from MySQL database (no problem) // together with "iframe" (I don't know how to configure <iframe>) // and also use "javascript" to auto refresh this section every 1-second (SECTION B ONLY) // since the data show on section B would keep on changing (I don't know the codes) --> <tr> <td> . $Column1 . </td> <td> . $Column2 . </td> <td> . $Column3 . </td> <td> . $Column4 . </td> <td> . $Column5 . </td> </tr> <!-- // SECTION C // ========= // Auto refresh this section every 30-second (SECTION C ONLY and I don't know the codes) --> <tr> <td> . $Column1 . </td> <td> . $Column2 . </td> <td> . $Column3 . </td> <td> . $Column4 . </td> <td> . $Column5 . </td> </tr> <!-- // SECTION D // ========= // Load one only, no need to refresh --> <tr> <td>End of Record</td> </tr> </table> </body> </html> ===== index.php ===== -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php