php - Query and Display Results Every 'X' amount of Minutes from Oracle Database -
php - Query and Display Results Every 'X' amount of Minutes from Oracle Database -
is there way can query oracle 10g database, , display results in dynamically refreshed html file every 3 minutes, example?
here predicament: have several queries love display results of whole organization on basic html web page css. problem not want user able refresh page in his/her browser, , severely bog downwards database. have no problem writing queries, or writing html , css needed display tables. it's if query, export results xml every 3 minutes, , have html or php file pointing dynamically updated xml file. open other options well...
i have basic user access oracle db...nothing admin like. have access server, though, , have experience php, pl/sql, , html. perhaps have lower level programming language python? kind of stuck here. kind of help appreciated!
you can execute ajax request every 3 minutes using settimeout() function.
using jquery framework
$(document).ready(function() { settimeout("getfeed()", 180000); //180000 = 3 minutes in milliseconds }); function getfeed() { //ajaxrequest here }
for more info on ajax can go here: http://api.jquery.com/jquery.ajax/
php python xml oracle plsql
Comments
Post a Comment