If the user hits the back button and then the forward, it sometimes
resubmits the form.
This is why i initiated the session and ended it at the end of the data
processing page. If they happen to press forward, or back, it will still not
initiate the form unless they have actually visitied and submi
On Sun, 2008-12-07 at 16:44 +, Bhupendra Patel wrote:
> I've found a way that works for me.
>
> Using the START SESSION on the initial form, e.g.
> session_start();
> // store session data
> $_SESSION['form'] = "1";
> ?>
>
> and the using the code below in the processing form.
>
> You c
I've found a way that works for me.
Using the START SESSION on the initial form, e.g.
and the using the code below in the processing form.
You can do a check if the user has already submitted the from by the initial
session that starts then he/she is on the submitting form. If it is already
set
At 1:40 PM +0200 4/15/06, Alain Roger wrote:
Hi,
Sorry to look like stupid for some of you, but i'm still not able to link to
link ( ) or to a button via onclick event) the refresh of my page.
i've check META tag and also $PHP_SELF variable, but it does not work.
here is what i would like to d
Or, use form and images as button and you will not get variables at the
end of the link:
>
and on the top of the page (php file) before you grab info from database
and language info (maybe i the header file):
-afan
> On 15 Apr 2006, at 12:51, Alain Roger wrote:
>
>> but i do not want to
On 15 Apr 2006, at 12:51, Alain Roger wrote:
but i do not want to add some variable at the end of link...
when user click on the flag, it should first store language into a
$_SESSION
variable and after redirect/refresh page.
Not possible. Web pages don't work like that.
You need the flags
but i do not want to add some variable at the end of link...
when user click on the flag, it should first store language into a $_SESSION
variable and after redirect/refresh page.
On 4/15/06, chris smith <[EMAIL PROTECTED]> wrote:
>
> On 4/15/06, Alain Roger <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
On 4/15/06, Alain Roger <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Sorry to look like stupid for some of you, but i'm still not able to link to
> link ( ) or to a button via onclick event) the refresh of my page.
>
> i've check META tag and also $PHP_SELF variable, but it does not work.
What happens whe
Put this between the page's tags:
http://somesite_to_refresh_to";>
The "1" in the above line controls the time to refresh; the higher the
number, the longer to refresh.
Matt Darby
Miguel Guirao wrote:
Hello people,
I need to have a web page (PHP) that displays a status about electric
faci
""david forums"" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> well I see two way.
>
> First is to make a php script without end, which will run continuously.
I don't recommend this way at all. Why take up all that energy
>
> second way is to add refresh html tag, in your page, or
well I see two way.
First is to make a php script without end, which will run continuously.
second way is to add refresh html tag, in your page, or a js script to
reload automaticaly.
I'm not seeing other solution in php.
regards
Le Thu, 14 Jul 2005 02:27:47 +0200, Miguel Guirao
<[EMAIL
I did something pretty similar to this but not with an MD5 hash. I used a
table which had just two fields, one autoincrement and another one a
boolean. When doing a form, I added one record to this table and the ID I
got from it is the one I sent in the form, the other field served to
indicat
Aren't we oversimplifying the issue assuming that the records inserted
cannot have everything duplicated but the autoincrement field?
If you are taking an order and the customer says 'hey, add another of this',
with the code below the system will reject it because it assumes that it is
a refres
"Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Robert Meyer wrote:
>> Hello,
>>
>> Scenario:
>> 1) User is presented a blank form.
>> 2) User fills in form.
>> 3) User submits form.
>> 4) Record is added to database.
>> 5) Back to 1).
>
> Go really back to 1) - us
Sorry for that., i miss read that.. sorry, thought he wanted a php
function to
refresh the browser.
Assey.
On Wed, 18 May 2005, M. Sokolewicz wrote:
Next time, Mukasa, try reading... Robert clearly states that he'd like a PHP
function which TELLS him if the page has been refreshed or not (t
Robert Meyer wrote:
"Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Robert Meyer wrote:
Hello,
Scenario:
1) User is presented a blank form.
2) User fills in form.
3) User submits form.
4) Record is added to database.
5) Back to 1).
Go really back to 1) - use redirect
Next time, Mukasa, try reading... Robert clearly states that he'd like a
PHP function which TELLS him if the page has been refreshed or not
(thus, "resent"). There are headers sent out that indicate this, and
thus a function like refreshed() would be a shortcut to getting to know
if it has.
He
On Tue, 17 May 2005, Robert Meyer wrote:
As a last resort, I may have to do that, but that is by no means the
preferred method. I want to keep database access to a minimum.
I thought by this time this problem would have had a standard solution. It
would be nice if PHP had a function like refresh
Force a reload of the document after step (4), you may use javascript to
reload this document, ie...
After step (4) add this line...
print "document.location.href='';";
Assey.
On Tue, 17 May 2005, Robert Meyer wrote:
Hello,
Scenario:
1) User is presented a blank form.
2) Us
On Tue, May 17, 2005 2:24 pm, Robert Meyer said:
> Hello,
>
> Scenario:
> 1) User is presented a blank form.
with an MD5 hash which is stored in the database as "fresh"
> 2) User fills in form.
> 3) User submits form.
> 4) Record is added to database.
That particular MD5 has is marked as "used"
As a last resort, I may have to do that, but that is by no means the
preferred method. I want to keep database access to a minimum.
I thought by this time this problem would have had a standard solution. It
would be nice if PHP had a function like refreshed() so one could do ... if
(!refreshe
"Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Robert Meyer wrote:
>> Hello,
>>
>> Scenario:
>> 1) User is presented a blank form.
>> 2) User fills in form.
>> 3) User submits form.
>> 4) Record is added to database.
>> 5) Back to 1).
>
> Go really back to 1) - us
Why dont you check that data isnt being duplicated?
$query = "SELECT auto_col FROM table where col1 = $var1 & col2 = $var
3.";
$call_query = mysql_query($query,...
$query_data = mysql_assoc($call_query);
if(!$query_data) { do form }
else echo "information already exists in databas
Robert Meyer wrote:
Hello,
Scenario:
1) User is presented a blank form.
2) User fills in form.
3) User submits form.
4) Record is added to database.
5) Back to 1).
Go really back to 1) - use redirect. After the record is added to the
database, use something like:
header('Location: http://yourserve
[snip]
6) User clicks refresh.
7) Another record is added, same data except auto-increment field.
How do I prevent these last two steps, or at least prevent a record
from being added when refresh is clicked?
[/snip]
Test for the existence (SELECT statement with the variables therein) of
the record
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
>
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
--
-->>
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
--- 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
Pieter from SA wrote:
> I need to know if there is any code that can be used to get rid of the
> refresh and retry when using the back button in internet explorer.
>
> Every time i get info from the database and display the result, and i use
> the back button it says
>
> Warning: Page has Expired T
Pieter from SA wrote:
Hi
I need to know if there is any code that can be used to get rid of the
refresh and retry when using the back button in internet explorer.
Every time i get info from the database and display the result, and i use
the back button it says
Warning: Page has Expired The page you
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 refresh page every 2 minutes. How that
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
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
Hello BigMark,
Wednesday, December 3, 2003, 6:04:03 AM, you wrote:
B> At the moment this code accepts changes and deletes from the Db but when the
B> submit button is pressed it echos- 'Record updated/edited' and i
B> have to go back and refresh to view the updated list, how can i jus
Consider 4 IFRAMEs on one page, with meta refreshes in each header which
point to your php script with a get parameter of whichever 'section' you're
dealing with.
Regards
Chris
-Original Message-
From: ascll [mailto:[EMAIL PROTECTED]
Sent: 25 September 2003 08:48
To: [EMAIL PROTECTED]
Su
Does your explorer ask you if you want to resend the information? It
does. You post your form once again. If you don't want this to happen,
use header("Location: http://yourserver/your_form_page.php";); redirect.
Rex Brooks wrote:
Okay, I'm displaying an entire table of numbers from my database
Hi,
Thanks for the response, I'll try to explain better:
I have 2 frames: a Menu and a Content frame.
I have 2 menu's: one for support and one for sales
If the content frame displays a support article, the support menu should be
displayed.
If the content frame displays a sales article, the sale
Hi,
It's not very clear from your message what you are trying to do. If you
are trying to just reload some of the frames instead of the whole
frameset look at the 'target' attribute for 'A' element in html.
Ronald van Raaphorst wrote:
Hi all,
I have header, a menu and a content frame.
The head
* Thus wrote Steve Fulleylove ([EMAIL PROTECTED]):
> Hi all,
>
> I have a PHP web site that uses frames. I can use the header() function to
> redirect the user to a new page, but can I use this function to load a page
> into a different frame ?
negative. you'll have to use some javascipt to ref
cache...
>
> any ideas?
>
> Thank you
>
> Mauricio Valente
>
> - Original Message -
> From: "Ralph Guzman" <[EMAIL PROTECTED]>
> To: "'Mauricio'" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 08, 2003 6:57 PM
> Subject: RE: [PHP]
ssage -
From: "Ralph Guzman" <[EMAIL PROTECTED]>
To: "'Mauricio'" <[EMAIL PROTECTED]>
Sent: Tuesday, July 08, 2003 6:57 PM
Subject: RE: [PHP] Refresh PHP
> I though you were passing the variable through the url. If you have this
> stored in a session, then
L PROTECTED]>
To: "'Mauricio'" <[EMAIL PROTECTED]>; "'PHP'" <[EMAIL PROTECTED]>
Sent: Tuesday, July 08, 2003 4:05 PM
Subject: RE: [PHP] Refresh PHP
> How about:
>
> if($_GET['url_variable'] != $url_variable){
>$ur
How about:
if($_GET['url_variable'] != $url_variable){
$url_variable = $_GET['url_variable'];
session_register('url_variable')
}
-Original Message-
From: Mauricio [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 08, 2003 11:14 AM
To: PHP
Subject: Re:
;[EMAIL PROTECTED]>
To: "'Mauricio'" <[EMAIL PROTECTED]>
Sent: Tuesday, July 08, 2003 2:11 PM
Subject: RE: [PHP] Refresh PHP
> Rather than using session_destroy() reset the session variable by
> assigning it an empty value. For example, lets say your url l
Try adding a random number to the end of your
URL.index.php?$randomnumber
-Original Message-
From: Mauricio [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 08, 2003 10:02 AM
To: PHP
Subject: [PHP] Refresh PHP
Hi people!
Did anyone get this situation?
I'm creating a Site that uses 3 s
Yeah I found that out eventually. Thanks :)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> My user has reported a problem when he loads a page. The page grabs data
> from MSSQL and displays this on the screen. However, it is not updated.
> Is there any way in getting the page to automatically refresh itself
> ONCE when it is loaded, without ending up in a loop?
Javascript will do tha
http://www.google.com/search?q=meta+refresh+html+code
Google is your friend.
Cheers
Brendon
-Original Message-
From: Shaun [mailto:johan@;novtel.co.za]
Sent: Monday, November 11, 2002 9:24 PM
To: [EMAIL PROTECTED]
Subject: [PHP] refresh
hi,
How do you refresh a page in php?
If i can
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
Su
You will need to use Javascript... NOT PHP..
Timothy Hitchens (HITCHO)
[EMAIL PROTECTED]
HITCHO has Spoken!
-Original Message-
From: Stephen [mailto:[EMAIL PROTECTED]]
Sent: Friday, 11 October 2002 8:05 AM
To: PHP List
Subject: [PHP] Refresh my Memory
Hello,
I forget exactly h
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
-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?
>
> Th
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?
>
>
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>
>TAK>
>TAK>
>
>TAK> Does it work
[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 wonde
Have you tried creating HTML with the equivalent META header?
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 in my php:
>
> header("Refresh: 3; url=newpage.php");
>
...
HTH,
Dw
- Original Message -
From: "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!
>
>
t;[EMAIL PROTECTED]>
To: <[EMAIL 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
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 info
on Wong [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, 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.
> > Pe
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 (...
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 that the
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
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
Well... yes, you can. You'll have to use a differen
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
"* R&Ze:" <[EMAIL PROTE
Can I send params to main frame ?
Thanks,
Rosen
"* R&Ze:" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
>
> From: Rosen <[EMAIL PROTECTED]>
> Date: Tue, Aug 28, 2001 at 04:29:05PM +0300
> Message-ID: <[EMAIL PROTECTED]>
> Subject: [PHP] Refresh Main frame
>
>
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
window.parent.
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 dif
> what do I have to do, to guarentee that the client has got the actual
> page?
> - or does the browser know - ordering a .php page means
> "really fetch it,
> and don't take the cached one!
> but what about proxy-server out there???
Try using headers that expire your page if you're really worr
>From everything I know, this can't be done easily. The only way I can think
of to do it is to keep both sessions alive so that you still have a
connection to the browser from the server. This is not real good.
I would instead, explore options using JavaScript. I think I can see a
couple of way
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 t
87 matches
Mail list logo