1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How to email some data from MYSQL using PHP?

Discussion in 'PHP' started by aayybb, Jan 8, 2008.

  1. #1
    Hi,

    How to email some data from MYSQL database using PHP?
    Say the customer forgot his login info and I want to email them the login info after searching the database with their ID and send the data back to them using the email in file.
     
    aayybb, Jan 8, 2008 IP
  2. SNaRe

    SNaRe Well-Known Member

    Messages:
    1,132
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    165
    #2
    SNaRe, Jan 8, 2008 IP
  3. aayybb

    aayybb Peon

    Messages:
    128
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thanks, that is an awesome website. I did try the following code. Everything is fine except the line $to = ....
    Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING


    I don't know what I am missing at the line $to...

    $dealer_info = mysql_fetch_array ($get_dealer_info);
    $to = "$dealer_info['email']";
    $subject = "Your login info to sample.com";
    $email = "xxx@sample.com" ;
    $body = "user ID: /n".$info['dealerid']."username: ".$info['username']."password: ".$info['password'];
    $headers = "From: $email";
    $sent = mail($to, $subject, $body, $headers) ;
     
    aayybb, Jan 8, 2008 IP
  4. craze3

    craze3 Well-Known Member

    Messages:
    454
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    110
    #4
    It should be
    $to = $dealer_info['email'];
     
    craze3, Jan 8, 2008 IP
  5. aayybb

    aayybb Peon

    Messages:
    128
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Yes. Thank you very much.
     
    aayybb, Jan 8, 2008 IP