Re: [PHP] Help with variables in email

2002-11-18 Thread Maxim Maletsky
add single quote ['] before and after every dot [.] : /* message */ $message = ' Products Purchased: Customer Information:

Re: [PHP] Help with variables in email

2002-11-18 Thread Jason Wong
On Monday 18 November 2002 23:19, Clint Tredway wrote: > I just pulled out the code that I needed help with. > > I did as was suggested before and now it only outputs to the first > variable. > ### .$title. You did not do as was suggested. You need to do something like: $mes

RE: [PHP] Help with variables in email

2002-11-18 Thread Clint Tredway
Tredway Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Help with variables in email Seems to me that you are missing the opening and closing PHP tags () Quoting Clint Tredway <[EMAIL PROTECTED]>: ### I am trying to send an email with form vars inside it but I cannot seem ### to get the vars

Re: [PHP] Help with variables in email

2002-11-18 Thread rw
Seems to me that you are missing the opening and closing PHP tags () Quoting Clint Tredway <[EMAIL PROTECTED]>: ### I am trying to send an email with form vars inside it but I cannot seem ### to get the vars to be parsed. ### ### Here is my code: ### /* message */ ### $messa

Re: [PHP] Help with variables in email

2002-11-18 Thread Marek Kilimajer
You are using single quotes, either do $message = ' '. $some_var . ' .'; or $message = " . $some_var ."; // using double quotes Clint Tredway wrote: I am trying to send an email with form vars inside it but I cannot seem to get the vars to be parsed. Here is my code: /* messag