Re: [PHP] refresh page automaticly on PHP

2004-09-30 Thread M Saleh EG
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

Re: [PHP] refresh page automaticly on PHP

2004-09-30 Thread Chris Shiflett
--- 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

Re: [PHP] refresh page automaticly on PHP

2004-09-30 Thread Brian
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

Re: [PHP] refresh page automaticly on PHP

2004-09-30 Thread Gareth Williams
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

Re: [PHP] refresh page automaticly on PHP

2004-09-30 Thread Marek Kilimajer
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

RE: [PHP] refresh page automaticly on PHP

2004-09-30 Thread Jay Blanchard
[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

[PHP] refresh page automaticly on PHP

2004-09-30 Thread welly limston
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!

Re: [PHP] Refresh page with frames...

2004-09-15 Thread Jasper Howard
> 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

Re: FW: [PHP] Refresh page with frames...

2004-09-15 Thread John Nichel
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

FW: [PHP] Refresh page with frames...

2004-09-15 Thread Andre
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'; //--> -- --

Re: [PHP] Refresh page with frames...

2004-09-15 Thread Jasper Howard
-- -->> Jasper Howard :: Database Administration ApexEleven Web Design 1.530.559.0107 http://www.ApexEleven.com/ <<

Re: [PHP] Refresh page with frames...

2004-09-15 Thread John Nichel
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

Re: [PHP] Refresh page with frames...

2004-09-15 Thread John Holmes
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

[PHP] Refresh page with frames...

2004-09-15 Thread Andre
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

Re: [PHP] Refresh Page

2004-06-06 Thread Chris Shiflett
--- 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

Re: [PHP] Refresh Page

2004-06-05 Thread Scot L. Harris
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]

Re: [PHP] Refresh Page

2004-06-05 Thread Daniel Clark
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

[PHP] Refresh Page

2004-06-05 Thread Mike Mapsnac
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

Re: [PHP] refresh page

2004-03-16 Thread apur kurub ver.1
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

Re: [PHP] refresh page

2004-03-16 Thread trlists
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

Re: [PHP] refresh page

2004-03-16 Thread Chris Shiflett
--- 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'

Re: [PHP] refresh page

2004-03-16 Thread Mike Mapsnac
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

Re: [PHP] refresh page

2004-03-16 Thread trlists
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

Re: [PHP] refresh page

2004-03-16 Thread Jeff Oien
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

Re: [PHP] refresh page

2004-03-16 Thread Freddy Rodriguez
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: &

Re: [PHP] refresh page

2004-03-16 Thread Richard Davey
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

[PHP] refresh page

2004-03-16 Thread Mike Mapsnac
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 (

Re: [PHP] refresh page (might be 0t)

2004-02-07 Thread Adam Bregenzer
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

[PHP] refresh page (might be 0t)

2004-02-07 Thread Ryan A
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