RE: [PHP] mail() function problem

2002-09-02 Thread Akhmad D. Sembiring
# On 09/03/2002 12:19 AM, Akhmad D. Sembiring wrote: # > Dear Arul & friends, # > # > thanks for your kind helps, # > but the problem still exists. # > # > the actual problem is that the 2nd mail() function # > does not ever send the mail, no matter what the destination # > and the addi

Re: [PHP] mail() function problem

2002-09-02 Thread Manuel Lemos
Hello, On 09/03/2002 12:38 AM, Akhmad D. Sembiring wrote: > # > thanks for your kind helps, > # > but the problem still exists. > # > > # > the actual problem is that the 2nd mail() function > # > does not ever send the mail, no matter what the destination > # > and the additional hea

Re: [PHP] Re: unexpected T_SL

2002-09-02 Thread Voisine
I tried everything and I still have this error. I have this error with php 4.2.2 on Windows 98 I also have the same problem with Apache, RedHat php 4.2.1. WellI'm going to skip this lesson. Thanks for all the help! Regards! Steel wrote: > Hi Erwin, > > Monday, September 2, 2002, 11:28:0

[PHP] Re: Why doesn't the second instance work?

2002-09-02 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > //create a list of editible items > echo ""; > echo ""; > for ($i=3D0; $i <$num_results; $i++) > { > $row =3D mysql_fetch_array($result); > echo " $row[id], = > $row[productname]"; > } > echo ""; > echo ""; > echo ""; > ?>

[PHP] IE won't post on Windows, but will on Mac

2002-09-02 Thread Jed Verity
Hello, All, I've given myself two black eyes and a bloody nose on this one, and I'm sure it's a simple solution. I have a form on the php page "entry.php": At the top of that page, I have the PHP code: With IE 5.2 on Mac, I submit this form and I see "POST" echoed at the top of the page.

RE: [PHP] IE won't post on Windows, but will on Mac

2002-09-02 Thread Martin Towell
Have you checked the $_POST (or $HTTP_POST_VAR) variable to make sure it IS using GET? Martin -Original Message- From: Jed Verity [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 3:19 PM To: [EMAIL PROTECTED] Subject: [PHP] IE won't post on Windows, but will on Mac Hello,

Re: [PHP] IE won't post on Windows, but will on Mac

2002-09-02 Thread Jed Verity
Hi Martin, Thanks for responding. I just checked for any post variables and none were set. The problem revealed itself because I originally had: And "do something else" was always being done. Any other thoughts? Thanks again... Jed On the threshold of genius, Martin Towell wrote: > Have you

Re: [PHP] How to escape " in hidden field?

2002-09-02 Thread Martin Thoma
> Try this with single quotes: > > Year, but then I couldn't use single-quotes in the text ;-) The problem is that the content of the field is inserted by the user, so I cannot say if he uses single- and/or double-quotes. -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] mysql string comparison not working

2002-09-02 Thread David Banning
if I set test = "Y"; then if ($test == "Y") {echo ("it matches");} seems to work while if ($row[24] == "Y") {echo ("it matches");} does not. The row[24] mysql variable is char type and 1 char long. any idea why it is not doing the comparison? -- PHP General Mailing List (http://www.php.net/

[PHP] Session problem

2002-09-02 Thread Monil Chheda
Hi, I am using session_start() and session_register("variablename") . The when I click on the back button from the browser it shows me the following error: "Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available.

Re[2]: [PHP] How to escape " in hidden field?

2002-09-02 Thread Tom Rogers
Hi, Tuesday, September 3, 2002, 4:35:45 PM, you wrote: >> Try this with single quotes: >> >> MT> Year, but then I couldn't use single-quotes in the text ;-) The problem is that MT> the content of the field is inserted by the user, so I cannot say if he uses MT> single- and/or double-quotes

Re: [PHP] IE won't post on Windows, but will on Mac

2002-09-02 Thread Tom Rogers
Hi, Tuesday, September 3, 2002, 3:19:01 PM, you wrote: JV> Hello, All, JV> I've given myself two black eyes and a bloody nose on this one, and I'm sure JV> it's a simple solution. I have a form on the php page "entry.php": JV> JV> JV> JV> At the top of that page, I have the PHP code: JV>

<    1   2