Re: [PHP] Refresh (F5) adds another SQL record.

2008-12-08 Thread Bhupendra Patel
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

Re: [PHP] Refresh (F5) adds another SQL record.

2008-12-07 Thread Ashley Sheridan
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

Re: [PHP] Refresh (F5) adds another SQL record.

2008-12-07 Thread Bhupendra Patel
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

Re: [PHP] refresh PHP page via onclick event

2006-04-15 Thread tedd
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

Re: [PHP] refresh PHP page via onclick event

2006-04-15 Thread afan
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

Re: [PHP] refresh PHP page via onclick event

2006-04-15 Thread Richard Davey
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

Re: [PHP] refresh PHP page via onclick event

2006-04-15 Thread Alain Roger
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, > >

Re: [PHP] refresh PHP page via onclick event

2006-04-15 Thread chris smith
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

Re: [PHP] Refresh

2005-07-14 Thread Matt Darby
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

Re: [PHP] Refresh

2005-07-14 Thread Mark Rees
""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

Re: [PHP] Refresh

2005-07-14 Thread david forums
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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-19 Thread Satyam
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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-19 Thread Satyam
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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-19 Thread Satyam
"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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-18 Thread Mukasa Assey Alfred
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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-18 Thread Marek Kilimajer
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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-18 Thread M. Sokolewicz
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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-18 Thread Mukasa Assey Alfred
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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-18 Thread Mukasa Assey Alfred
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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-17 Thread Richard Lynch
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"

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-17 Thread Robert Meyer
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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-17 Thread Robert Meyer
"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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-17 Thread Marcus Joyce
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

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-17 Thread Marek Kilimajer
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

RE: [PHP] Refresh (F5) adds another SQL record.

2005-05-17 Thread Jay Blanchard
[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

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

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: [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

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

Re: [PHP] Refresh and retry when using back button on IE

2004-06-02 Thread John W. Holmes
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

Re: [PHP] Refresh and retry when using back button on IE

2004-06-02 Thread Marek Kilimajer
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

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 refresh page every 2 minutes. How that

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

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

Re: [PHP] refresh data

2003-12-02 Thread Richard Davey
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

RE: [PHP] Refresh php section

2003-09-25 Thread chris . neale
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

Re: [PHP] Refresh Error

2003-09-12 Thread Marek Kilimajer
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

Re: [PHP] Refresh a frame based on a condition in another frame?

2003-09-01 Thread Ronald van Raaphorst
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

Re: [PHP] Refresh a frame based on a condition in another frame?

2003-09-01 Thread Raditha Dissanayake
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

Re: [PHP] Refresh a page in another frame

2003-07-30 Thread Curt Zirzow
* 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

Re: [PHP] Refresh PHP

2003-07-09 Thread Scott Fletcher
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]

Re: [PHP] Refresh PHP

2003-07-09 Thread Mauricio
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

Re: [PHP] Refresh PHP

2003-07-08 Thread Mauricio
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

RE: [PHP] Refresh PHP

2003-07-08 Thread Ralph Guzman
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:

Re: [PHP] Refresh PHP

2003-07-08 Thread Mauricio
;[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

RE: [PHP] Refresh PHP

2003-07-08 Thread Brian S. Drexler
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

RE: [PHP] Refresh in PHP [solved]

2003-07-07 Thread Gary Ogilvie
Yeah I found that out eventually. Thanks :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Refresh in PHP

2003-07-07 Thread Greg Donald
> 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

RE: [PHP] refresh

2002-11-11 Thread Brendon G
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

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 Su

RE: [PHP] Refresh my Memory

2002-10-10 Thread Timothy J Hitchens
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

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

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? > > Th

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? > >

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> >TAK> >TAK> > >TAK> Does it work

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 wonde

Re: [PHP] Refresh doesn't work

2002-05-20 Thread Thalis A. Kalfigopoulos
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"); >

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

2002-05-20 Thread Sqlcoders.com Programming Dept
... 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! > >

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

2002-05-20 Thread 1LT John W. Holmes
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

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 info

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

2002-05-20 Thread savaidis
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

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 (...

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 that the

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 Main frame

2001-08-28 Thread
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

RE: [PHP] Refresh Main frame

2001-08-28 Thread Jon Farmer
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

Re: [PHP] Refresh Main frame

2001-08-28 Thread Rosen
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 > >

Re: [PHP] Refresh Main frame

2001-08-28 Thread
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.

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 dif

RE: [PHP] refresh Browser

2001-01-17 Thread jeremy
> 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

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

2001-01-14 Thread Cal Evans
>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

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 t