or u can use this method from JS
You could refresh the page in various ways
1- make a rerequest to the server to give u the same page again: using
the PHP Header function.
2-using the html Header refresh tag
3-Java Script to reload the document
Since the 1st and 2nd methods are discussed in the
--- welly limston <[EMAIL PROTECTED]> wrote:
> how to make my page refresh automaticly?
You can use a Refresh header:
Refresh: 3; url=http://example.org/
> Can i use PHP function?
http://www.php.net/header
Hope that helps.
Chris
=
Chris Shiflett - http://shiflett.org/
PHP Security - O'R
As the others said, this isn't a function of php, php is a server-side
script and a refresh is on the client side. A meta-refresh tag is
fine depending on how reliable you want your refresh to be as it'll
stop working after a day or so. If you need it to refresh forever
you'll need to use javascr
Try header();
On 30 Sep 2004, at 14:09, welly limston wrote:
how to make my page refresh automaticly?
Can i use PHP function?
what is it?
-
Do you Yahoo!?
vote.yahoo.com - Register online to vote today!
--
PHP General Mailing List (http://www.php.net
Jay Blanchard wrote:
[snip]
how to make my page refresh automaticly?
Can i use PHP function?
what is it?
[/snip]
You cannot do it with PHP, you use a meta refresh tag
(http://www.w3.org)
Or header refresh
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/un
[snip]
how to make my page refresh automaticly?
Can i use PHP function?
what is it?
[/snip]
You cannot do it with PHP, you use a meta refresh tag
(http://www.w3.org)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
how to make my page refresh automaticly?
Can i use PHP function?
what is it?
-
Do you Yahoo!?
vote.yahoo.com - Register online to vote today!
>
And I try whit this;
-Original Message-
From: Jasper Howard [mailto:[EMAIL PROTECTED]
Sent: quarta-feira, 15 de Setembro de 2004 18:27
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Refresh page with frames...
<!--
location.refresh
Andre wrote:
This list is for PHP, not a JavaScript.
--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
PROTECTED]
Sent: quarta-feira, 15 de Setembro de 2004 18:27
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Refresh page with frames...
<!--
location.refresh(true);
//OR
parent.document.location='LOCATION HERE';
//-->
--
--
--
-->>
Jasper Howard :: Database Administration
ApexEleven Web Design
1.530.559.0107
http://www.ApexEleven.com/
<<
Andre wrote:
Hello
How can I refresh a page with frames, I use the code below but don't it
doesn't work
You can't with PHP. But I'm betting that if you Google, you'll find
some info on JavaScript.
--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]
--
PHP General Mailing List
From: "Andre " <[EMAIL PROTECTED]>
How can I refresh a page with frames, I use the code below but don't it
doesn't work
Right click -> Refresh Frame
---John Holmes...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello
How can I refresh a page with frames, I use the code below but don't it
doesn't work
Can I refresh a page with frames with this code?
echo"";
Thank's
--- Mike Mapsnac <[EMAIL PROTECTED]> wrote:
> I want to refresh page every 10 seconds, without clicking on
> "Refresh" button.
Use the Refresh header:
header('Refresh: 10; url=http://example.org/foo.php');
Hope that helps.
Chris
=
Chris Shiflett - http://shiflett.org/
PHP Security - O'Rei
On Sat, 2004-06-05 at 10:20, Mike Mapsnac wrote:
> I want to refresh page every 10 seconds, without clicking on "Refresh"
> button.
> Any ideas how this can be done?
>
> Thanks
I think you want to include something like this in your pages header
section:
--
Scot L. Harris
[EMAIL PROTECTED]
Put inside the tags, this refreshed the page every 10 seconds.
>>I want to refresh page every 10 seconds, without clicking on "Refresh"
>>button.
>>Any ideas how this can be done?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I want to refresh page every 10 seconds, without clicking on "Refresh"
button.
Any ideas how this can be done?
Thanks
_
MSN 9 Dial-up Internet Access fights spam and pop-ups now 3 months FREE!
http://join.msn.click-url.com/go/onm0
using meta instead php
rgds
amdm
http://amadarum.e-tics.net/blogger
- Original Message -
From: "Mike Mapsnac" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, March 17, 2004 8:55 AM
Subject: [PHP] refresh page
> Hello
>
> I need to re
On 16 Mar 2004 Jeff Oien wrote:
> You have to basically go back and forth between two pages.
The site you mentioned does, but it is easy to refresh to the same page
-- just use your own URL. An empty URL also works -- I tried it in IE
6 and Mozilla 1.5; don't know if it works with other browse
--- Mike Mapsnac <[EMAIL PROTECTED]> wrote:
> I need to refresh page every 2 minutes. How that's can be done in PHP?
You can do this with a Refresh header:
header('Refresh: 120; url=http://www.example.org/');
Hope that helps.
Chris
=
Chris Shiflett - http://shiflett.org/
PHP Security - O'
Can you show the code?
Thanks
From: Jeff Oien <[EMAIL PROTECTED]>
To: Mike Mapsnac <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: [PHP] refresh page
Date: Tue, 16 Mar 2004 20:11:49 -0600
Mike Mapsnac wrote:
I need to refresh page every 2 minutes. How that's can be
On 17 Mar 2004 Mike Mapsnac wrote:
> I need to refresh page every 2 minutes. How that's can be done in
> PHP?
You can do it with a header. I think something this simple will work:
header("Refresh: 120");
or in the area:
print "\n";
If you want to refresh to an explicit URL
Mike Mapsnac wrote:
I need to refresh page every 2 minutes. How that's can be done in PHP?
This would just be an HTML thing but if you want a user to specify
a page I've done it here:
http://www.ttrader.com/stockchat/refresh.html
You have to basically go back and forth between two pages.
Let me k
Hello
Hay una lista en español para php?
THanks
-Original Message-
From: Richard Davey <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Date: Wed, 17 Mar 2004 01:59:52 +
Subject: Re: [PHP] refresh page
> Hello Mike,
>
> Wednesday, March 17, 2004, 1:55:51 AM, you wrote:
&
Hello Mike,
Wednesday, March 17, 2004, 1:55:51 AM, you wrote:
MM> I need to refresh page every 2 minutes. How that's can be done in PHP?
PHP itself cannot do this. You can use PHP to output a meta refresh
tag however which could be set to refresh every 2 minutes, understand
it is the HTML that
Hello
I need to refresh page every 2 minutes. How that's can be done in PHP?
THanks
_
FREE pop-up blocking with the new MSN Toolbar get it now!
http://clk.atdmt.com/AVE/go/onm00200415ave/direct/01/
--
PHP General Mailing List (
On Sat, 2004-02-07 at 23:03, Ryan A wrote:
> Heres what I am doing:
> I give the client a control panel where he can add,edit and delete accounts,
> after each of the actions I have a link back to
> the index page of the contol panel...problem is, unless he presses the
> refresh button it shows him
Hey,
Have run into a little problem...any help appreciated.
Heres what I am doing:
I give the client a control panel where he can add,edit and delete accounts,
after each of the actions I have a link back to
the index page of the contol panel...problem is, unless he presses the
refresh button it s
29 matches
Mail list logo