Please support our PHP advertiser: Lunarpages PHP Web Hosting
Views: 2508 | Replies: 3
![]() |
•
•
Join Date: May 2006
Location: United Kingdom
Posts: 19
Reputation:
Rep Power: 3
Solved Threads: 0
What are you using, did you write the code?
You might want to post it on here so others can help you out further.
Does the form info be sent to you by email? If so there are afew I found for free while searching, have alook and test to see if they have the options you want, if that is what you want.
Hope that makes sence lol
You might want to post it on here so others can help you out further.
Does the form info be sent to you by email? If so there are afew I found for free while searching, have alook and test to see if they have the options you want, if that is what you want.
Hope that makes sence lol
HTML/XHTML - OK
CSS - OK
JAVASCRIPT - Learning
PHP - Learning
•
•
Join Date: Aug 2005
Location: somewhere in time
Posts: 81
Reputation:
Rep Power: 4
Solved Threads: 5
Have you looked at the PHP sleep() function? Plugging a number in causes the program to pause for teh number of seconds you plug in as a value.
sleep(2); causes the program to pause for 2 seconds.
sleep(2); causes the program to pause for 2 seconds.
•
•
Join Date: Oct 2004
Location: San Francisco, CA
Posts: 338
Reputation:
Rep Power: 5
Solved Threads: 2
another option is to use a meta-redirect tag, it's not really php but it does the job.
that code will wait 4 seconds before sending you to http://www.domain.com/link.html
if you use the sleep function, that will just cause the code to wait, but then you will still need to use either a meta-redirect tag (which i used above) or a header tag
[php]header('Location: http://www.domain.com/link.html');[/php]
the only problem with a header tag is that no output can be sent to the user (or you will get an error) so the meta tag might be easier in this case
<meta http-equiv="Refresh" content="4;url=http://www.domain.com/link.html">
if you use the sleep function, that will just cause the code to wait, but then you will still need to use either a meta-redirect tag (which i used above) or a header tag
[php]header('Location: http://www.domain.com/link.html');[/php]
the only problem with a header tag is that no output can be sent to the user (or you will get an error) so the meta tag might be easier in this case
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)





Linear Mode