kat32 Posted April 5, 2009 Share Posted April 5, 2009 <?php include('config.php'); $query = mysql_query("SELECT topics.topictitle, users.email FROM topics LEFT JOIN users ON topics.userid=users.userid WHERE topics.topicid=1") or die(mysql_error()); $row = mysql_fetch_array($query); $Name = "kat"; //senders name $sender_email = "kat32@yahoo.com"; //senders e-mail adress $topictitle=$row['topictitle']; $email=$row['email']; $header = "From: ". $Name . " <" . $sender_email . ">\r\n"; $subject = "this is the subject"; $qry = mysql_query("SELECT emailmsg FROM emails WHERE emailmsgid=1") or die(mysql_error()); $row = mysql_fetch_array($qry); $emailmsg=$row['emailmsg']; $body=$emailmsg; $sent = mail($email, $subject, $body, $header); if($sent){ echo 'sent'; } ?> here's the body of email This is the $topictitle, more text here. I want to display the topic title after "This is the". The problem is I can't display the topictitle, please help me. thanks in advance. Quote Link to comment Share on other sites More sharing options...
Yesideez Posted April 5, 2009 Share Posted April 5, 2009 $subject = "this is the ".$topictitle; Quote Link to comment Share on other sites More sharing options...
kat32 Posted April 5, 2009 Author Share Posted April 5, 2009 problem solved, thanks . Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.