Re: [PHP] Refresh my Memory

2002-10-10 Thread Stephen
I though PHP had an element that got that information from the user... - Original Message - From: Timothy J Hitchens [EMAIL PROTECTED] Newsgroups: php.general To: 'PHP List' [EMAIL PROTECTED] Sent: Thursday, October 10, 2002 5:06 PM Subject: RE: [PHP] Refresh my Memory You will need

[PHP] refresh function?

2002-09-11 Thread Peter
Hi, Is there a function that will auto refresh a page? Thanks in advance, -Peter -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] refresh function?

2002-09-11 Thread Peter Houchin
yeah have a look at ur meta tags.. ie meta refreash -Original Message- From: Peter [mailto:[EMAIL PROTECTED]] Sent: Thursday, 12 September 2002 1:56 PM To: [EMAIL PROTECTED] Subject: [PHP] refresh function? Hi, Is there a function that will auto refresh a page? Thanks

Re: [PHP] refresh function?

2002-09-11 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey, There sure is!:) /* 60 = Time in  seconds */ header(Refresh: 60; URL=http://www.php.net;); (http://php.net/header) ~Pauly On Wednesday 11 September 2002 11:56 pm, Peter wrote: Hi, Is there a function that will auto refresh a page? Thanks

Re: [PHP] refresh function?

2002-09-11 Thread Chris Shiflett
The Refresh HTTP header is not an official part of the HTTP specification, so be very wary using it. Chris Paul Nicholson wrote: There sure is!:) /* 60 = Time in seconds */ header(Refresh: 60; URL=http://www.php.net;); -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] refresh a php page

2002-09-06 Thread Meltem Demirkus
Hi, Is it possible to refresh a php page by a code?Or I should use meta or javascript?. thanks meltem -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] refresh (part of) a page?

2002-05-20 Thread savaidis
, May 19, 2002 3:35 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] refresh (part of) a page? On Sunday 19 May 2002 18:03, savaidis wrote: I want to refrech a part of my page (or the whole page) using PHP. Periodically, using a time delay. Should I use frames? You cannot refresh part of a page

Re: [PHP] refresh (part of) a page?

2002-05-20 Thread Jason Wong
On Monday 20 May 2002 16:39, savaidis wrote: I look and I search everything, it looks I'm reaching to a wall :) I used Netscape, I uploaded to my internet server, still the same. Plus, I cannot find header already send at manual. The error message is : Warning: Cannot add header information

Re: [PHP] refresh (part of) a page?

2002-05-20 Thread 1LT John W. Holmes
PROTECTED] Sent: Monday, May 20, 2002 4:39 AM Subject: RE: [PHP] refresh (part of) a page? I look and I search everything, it looks I'm reaching to a wall :) I used Netscape, I uploaded to my internet server, still the same. Plus, I cannot find header already send at manual. The error

Re: [PHP] refresh (part of) a page?

2002-05-20 Thread Sqlcoders.com Programming Dept
: savaidis [EMAIL PROTECTED] To: Sqlcoders.com Programming Dept [EMAIL PROTECTED] Sent: May 20 2002 08:42 AM Subject: RE: [PHP] refresh (part of) a page? Thanks a lot! Is possible to make invisible the borders? I tried border=0 and noborder but didn't work. Also to keep the 2 frames (I did

Re: [PHP] Refresh doesn't work

2002-05-20 Thread Thalis A. Kalfigopoulos
Have you tried creating HTML with the equivalent META header? HEAD META HTTP-EQUIV=refresh CONTENT=3; URL=newpage.php/ /HEAD Does it work for you? cheers, thalis On Mon, 20 May 2002, Olexandr Vynnychenko wrote: Hello php-general, Has anyone else here the same proplem as I have? I write

[PHP] Refresh doesn't work

2002-05-20 Thread Olexandr Vynnychenko
Hello php-general, Has anyone else here the same proplem as I have? I write in my php: header(Refresh: 3; url=newpage.php); Netscape 4.79 works fine and goes to page.php after 3 seconds pass. But IE 6 doesn't want to do that. Can anyone explain such a wonderful behavior? -- Best regards,

Re: [PHP] Refresh doesn't work

2002-05-20 Thread pong-TC
[EMAIL PROTECTED] writes: Hello php-general, Has anyone else here the same proplem as I have? I write in my php: header(Refresh: 3; url=newpage.php); Netscape 4.79 works fine and goes to page.php after 3 seconds pass. But IE 6 doesn't want to do that. Can anyone explain such a wonderful

Re[2]: [PHP] Refresh doesn't work

2002-05-20 Thread Olexandr Vynnychenko
Hello Thalis, Monday, May 20, 2002, 10:51:57 PM, you wrote: TAK Have you tried creating HTML with the equivalent META header? TAK HEAD TAK META HTTP-EQUIV=refresh CONTENT=3; URL=newpage.php/ TAK /HEAD TAK Does it work for you? TAK cheers, TAK thalis TAK On Mon, 20 May 2002, Olexandr

Re: [PHP] Refresh doesn't work

2002-05-20 Thread Bogdan Stancescu
Do you really need that 3 second delay? You can use a location header instead... Bogdan Olexandr Vynnychenko wrote: Hello Thalis, Monday, May 20, 2002, 10:51:57 PM, you wrote: TAK Have you tried creating HTML with the equivalent META header? TAK HEAD TAK META HTTP-EQUIV=refresh CONTENT=3;

Re[4]: [PHP] Refresh doesn't work

2002-05-20 Thread Olexandr Vynnychenko
Hello Johan, Tuesday, May 21, 2002, 2:13:07 AM, you wrote: JE I'am admining both a IIS5.1 server and a Apache 2.0.35 server, under WinXP. JE (say's it all, chaos!) JE And I've never got the header to work, but location, does the trick, JE sometimes... I don't know how it works Sometimes? Do

[PHP] refresh (part of) a page?

2002-05-19 Thread savaidis
I want to refrech a part of my page (or the whole page) using PHP. Periodically, using a time delay. Should I use frames? Also I tried to use header (...) calling the same page with different name (and then back to the same page) but I got the warning: header already send. I tried also Location

Re: [PHP] refresh (part of) a page?

2002-05-19 Thread Jason Wong
On Sunday 19 May 2002 18:03, savaidis wrote: I want to refrech a part of my page (or the whole page) using PHP. Periodically, using a time delay. Should I use frames? You cannot refresh part of a page without resending the whole page. You can use frames. Also I tried to use header (...)

[PHP] refresh

2002-04-05 Thread Kris Vose
I want to be able to refresh my browser window after a submission to a database. Is there a reliable function out there that can accomplish this? Kris

RE: [PHP] refresh

2002-04-05 Thread Rick Emery
after database submission, header(location: ...) re-directed to the script you wish to go to -Original Message- From: Kris Vose [mailto:[EMAIL PROTECTED]] Sent: Friday, April 05, 2002 10:31 AM To: [EMAIL PROTECTED] Subject: [PHP] refresh I want to be able to refresh my browser window

RE: [PHP] refresh

2002-04-05 Thread Rick Emery
yes, put the name of the PHP file -Original Message- From: Kris Vose [mailto:[EMAIL PROTECTED]] Sent: Friday, April 05, 2002 12:23 PM To: Rick Emery Subject: RE: [PHP] refresh When I delete a record from a table in php it loops back to the table. However, It does not show

[PHP] Refresh Main frame

2001-08-28 Thread Rosen
Hi, how can I tell to refresh the main frame ( index.php ) from some subframe I use frames ) ? Thanks, Rosen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

Re: [PHP] Refresh Main frame

2001-08-28 Thread * RzE:
Original message From: Rosen [EMAIL PROTECTED] Date: Tue, Aug 28, 2001 at 04:29:05PM +0300 Message-ID: [EMAIL PROTECTED] Subject: [PHP] Refresh Main frame Hi, how can I tell to refresh the main frame ( index.php ) from some subframe I use frames ) ? Thanks, Rosen /Original message

Re: [PHP] Refresh Main frame

2001-08-28 Thread Rosen
Can I send params to main frame ? Thanks, Rosen * RZe: [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Original message From: Rosen [EMAIL PROTECTED] Date: Tue, Aug 28, 2001 at 04:29:05PM +0300 Message-ID: [EMAIL PROTECTED] Subject: [PHP] Refresh Ma

RE: [PHP] Refresh Main frame

2001-08-28 Thread Jon Farmer
)7968 524175 PGP Key available, send blank email to [EMAIL PROTECTED] -Original Message- From: Rosen [mailto:[EMAIL PROTECTED]] Sent: 28 August 2001 15:04 To: [EMAIL PROTECTED] Subject: Re: [PHP] Refresh Main frame Can I send params to main frame ? Thanks, Rosen * RZe: [EMAIL PROTECTED

Re: [PHP] Refresh Main frame

2001-08-28 Thread * RzE:
Original message From: Rosen [EMAIL PROTECTED] Date: Tue, Aug 28, 2001 at 05:03:50PM +0300 Message-ID: [EMAIL PROTECTED] Subject: Re: [PHP] Refresh Main frame Can I send params to main frame ? Thanks, Rosen /Original message Reply Well... yes, you can. You'll have to use a different kind

[PHP] Refresh problems

2001-05-17 Thread Andrew Kirilenko
Hello! Sorry for offtopic. I'm developing PHP page for the displaying some kind of statistic. It displays graphics for the selected user. Pictures updates every 5 minutes by external program. I've form with submit button. If I press this button with different user selected, everything is OK.

Re: [PHP] Refresh problems

2001-05-17 Thread Pavel Jartsev
Andrew Kirilenko wrote: Hello! Sorry for offtopic. I'm developing PHP page for the displaying some kind of statistic. It displays graphics for the selected user. Pictures updates every 5 minutes by external program. I've form with submit button. If I press this button with different

[PHP] refresh

2001-03-08 Thread Miguel Loureiro
Hello, to refresh a site I use this (META HTTP-EQUIV="Refresh" CONTENT="300" ), but, now I make some updates im my right page and I want to refresh other page( left page of frameset ).How can I do it? T.Y. Best Regards Miguel Loureiro [EMAIL PROTECTED]

Re: [PHP] Refresh particular browser while updating another browser

2001-01-14 Thread Chris Adams
On 13 Jan 2001 23:45:58 -0800, Hendry Sumilo [EMAIL PROTECTED] wrote: I would like how to refresh particular browser with a new updated data when the user has updated it at another browser. Purpose of doing this is particular user won't user overwrite new value if he uses another browser to

RE: [PHP] Refresh particular browser while updating another browser

2001-01-14 Thread Cal Evans
To: [EMAIL PROTECTED] Subject: [PHP] Refresh particular browser while updating another browser Dear Expert, I would like how to refresh particular browser with a new updated data when the user has updated it at another browser. Purpose of doing this is particular user won't user overwrite new value

[PHP] Refresh particular browser while updating another browser

2001-01-13 Thread Hendry Sumilo
Dear Expert, I would like how to refresh particular browser with a new updated data when the user has updated it at another browser. Purpose of doing this is particular user won't user overwrite new value if he uses another browser to update it. Thank you Sincerely Yours Hendry Sumilo

<    1   2