磷星 wrote:

> How can I set a time limit for a form made by PHP (i.e.the value will auto
> transfer after a certain time)
> --
> 繁星工作室
> http://fansing.hk.st/
> ACG互動區域(大家多些來貼圖吧!)
> http://acgzone.hk.st/

HTML forms execute in the client's browser, which does not care at all whether
the form came from static html file, php, Perl, whatever.

The simplest way to get a browser to time out is with a  <META> refresh html
tag in the <HEADER> part of your page e.g.

<META HTTP-EQUIV="Refresh" CONTENT="15;
URL=http://www.mysite.com/too_long.html";>.

This would automatically redirect to the too_long.html page after 15 seconds.

George


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

Reply via email to