Re: [PHP-DB] another redirecting question

2003-06-05 Thread Jason Wong
On Friday 30 May 2003 23:11, Ovaltine wrote: At some point you need to force users to upgrade. In the case of javascript I don't think 'upgrade' is an issue here. The vast majority of browsers are certainly capable of executing javascript, rather the issue is the people who consciously choose

Re: [PHP-DB] another redirecting question

2003-06-03 Thread Metin Kale
Hi Grant.. I've tested it and it doesn't resubmit this information a second time. I have a page called submit.php where users can upload pictures. Once they submit, it goes to submitpics.php for processing and creates a session. Then it's redirected to submit.php which reads the session and

[PHP-DB] another redirecting question

2003-05-31 Thread Rick Dahl
The scripts I need to run before I redirect automatically send output to the browser. I cannot alter these scripts. Is there a way around this? Rick

RE: [PHP-DB] another redirecting question

2003-05-31 Thread Griffiths, Daniel
use javascript for your redirects then you wont have these problems -Original Message- From: Rick Dahl [mailto:[EMAIL PROTECTED] Sent: 30 May 2003 15:43 To: [EMAIL PROTECTED] Subject: [PHP-DB] another redirecting question The scripts I need to run before I redirect automatically send

RE: [PHP-DB] another redirecting question

2003-05-31 Thread Hutchins, Richard
If the user has disabled JavaScript in the browser doesn't that create another problem? -Original Message- From: Griffiths, Daniel [mailto:[EMAIL PROTECTED] Sent: Friday, May 30, 2003 10:44 AM To: Rick Dahl; [EMAIL PROTECTED] Subject: RE: [PHP-DB] another redirecting question

Re: [PHP-DB] another redirecting question

2003-05-31 Thread CPT John W. Holmes
If the user has disabled JavaScript in the browser doesn't that create another problem? Yes, it does. You've already said you're not going to rewrite your code so it's correct, though, so why worry about disabled javascript? John Holmes... -- PHP Database Mailing List

RE: [PHP-DB] another redirecting question

2003-05-31 Thread Griffiths, Daniel
, Richard [mailto:[EMAIL PROTECTED] Sent: 30 May 2003 15:47 To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] another redirecting question If the user has disabled JavaScript in the browser doesn't that create another problem? -Original Message- From: Griffiths, Daniel [mailto:[EMAIL PROTECTED

RE: [PHP-DB] another redirecting question

2003-05-31 Thread Metin Kale
is clear enough and suits your needs.. Metin -Original Message- From: Rick Dahl [mailto:[EMAIL PROTECTED] Sent: 30 May 2003 15:43 To: [EMAIL PROTECTED] Subject: [PHP-DB] another redirecting question The scripts I need to run before I redirect automatically send output

RE: [PHP-DB] another redirecting question

2003-05-31 Thread Ovaltine
-Original Message- From: Hutchins, Richard [mailto:[EMAIL PROTECTED] Sent: Friday, May 30, 2003 10:47 AM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] another redirecting question If the user has disabled JavaScript in the browser doesn't that create another problem? -Original Message

Re: [PHP-DB] another redirecting question

2003-05-31 Thread Grant Rutherford
I'm very new to PHP so somebody correct me please if this is a bad idea... I had the same problem and I ended up just including the second page at the end of the first one: ?php // some stuff (output if necessary) include 'nextpage.php'; die(); ? Grant On Fri, 2003-05-30 at 09:43, Rick Dahl

Re: [PHP-DB] another redirecting question

2003-05-31 Thread Metin Kale
Well, if you're inserting some data into a database and the person refreshes the page, it would re-insert the data again into the database. Including the page like you did at the end wouldn't change that fundamental problem, hence why you'd want to have it redirect to another page. Metin At

Re: [PHP-DB] another redirecting question

2003-05-31 Thread Grant Rutherford
Hi I did actually encounter that problem. However, wouldn't redirecting properly still allow the user to resubmit the information using the back button? I solved this problem a different way by setting and clearing session variables on entry and exit to a series of pages. Grant On Fri,