Jump to content

gl_itch

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

gl_itch's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. [!--quoteo(post=363859:date=Apr 11 2006, 07:44 PM:name=gl_itch)--][div class=\'quotetop\']QUOTE(gl_itch @ Apr 11 2006, 07:44 PM) [snapback]363859[/snapback][/div][div class=\'quotemain\'][!--quotec--] Ive tried that, I get a parse error. Even Purchase $date("m/d/Y") does the same. Any other ideas? Anyone? Thanks in advanced. [/quote] Got it, it should have been: "Purchase " . date("m/d/Y") Thanks.
  2. [!--quoteo(post=363857:date=Apr 11 2006, 07:40 PM:name=kc5tvd)--][div class=\'quotetop\']QUOTE(kc5tvd @ Apr 11 2006, 07:40 PM) [snapback]363857[/snapback][/div][div class=\'quotemain\'][!--quotec--] I am not in a place where i can test it but try this. [code]$msg="\n".date("m/d/Y")."\n".date("h/i/A")."\n".$_POST['first_name']." ".$_POST['last_name']."\n".$_POST['payer_email']."\n".$_POST['custom']; $date = date('m/d/Y');         mail("email@gmail.com","Purchased $date","$msg","from: email@gmail.com");[/code] [/quote] Ive tried that, I get a parse error. Even Purchase $date("m/d/Y") does the same. Any other ideas? Anyone? Thanks in advanced.
  3. Hi, Im a bit of a newb with PHP so Im hoping you guys can help.... This script sends an email to my address with the users already entered variables. I use this to basically keep record. My script is as follows: [code]$msg="\n".date("m/d/Y")."\n".date("h/i/A")."\n".$_POST['first_name']." ".$_POST['last_name']."\n".$_POST['payer_email']."\n".$_POST['custom'];         mail("email@gmail.com",date("m/d/Y")",$msg,"from: email@gmail.com");[/code] Now as you can see in the last line, the subject right now just posts the date, so the message's subject would read "04/11/06", I want the subject to be "Purchase 04/11/06" How can I do this? No matter how I enter it, I get an error. Thanks in advanced.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.