On Monday, June 24, 2002, at 10:04  AM, adi wrote:

> How to make a function for refreshing values in php pages, without
> pressing Refresh button. What must i read?

There's a meta tag that will auto-refresh the page after a specified 
number of seconds.  That will work.  But you can't re-populate the data 
in the page using PHP.  Remember, PHP has generated an HTML document and 
sent it to the user's browser.  That is all.

If you are creative, you can use JavaScript to solve the problem, but it 
will require some kind of communication with the web server, and won't 
work if the user doesn't have the right implementation of JavaScript.  
That can be a headache.

or you can write a Java applet (actually for this kind of task I 
recommend this).


Erik




----

Erik Price
Web Developer Temp
Media Lab, H.H. Brown
[EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to