Sending a location Header

2003-01-11 Thread Colin Johnstone
Gidday All, After adding a member to my mailing list using a form with the get method. I wish to send a location header to call the page again, to clear the query string. So that if the refresh key is hit that member is not added again. Is this the correct implementation of the location header

Re: using an AND operator

2003-01-11 Thread WilliamGunther
In a message dated 1/11/2003 9:43:32 AM Eastern Standard Time, [EMAIL PROTECTED] writes: if ($SRF=1 and $SRL=1) {printYES;) You got the and right, but the conditional wrong. 2 equal signs for conditionals. So your example: $SRF = 1; $SRL = 1; if ($SRF==1 and $SRL==1) {printYES;} #True or is

Re: Sending a location Header

2003-01-11 Thread Wiggins d'Anconia
Colin Johnstone wrote: Gidday All, After adding a member to my mailing list using a form with the get method. I wish to send a location header to call the page again, to clear the query string. So that if the refresh key is hit that member is not added again. Is this the correct implementation

Re: using an AND operator

2003-01-11 Thread Rob Dixon
Hi Susan Susan Aurand [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Is there an AND operator in perl? For example; if ($SRF=1 and $SRL=1) {printYES;) Any help would be appreciated. Thank you - Susan What you've written will work as it is, except that