Question : Can't get php variables into Mail

Hey guys, I am having trouble getting the variables $id and $title to appear in the mail that is sent out. could you guys take a look and tell me what's going on. I think it's just a syntax error.
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
session_start();
 
include("../php/mysql.php");
 
//if ($_POST['type'] == "advice") {
 $new_string = nl2br($_POST[information]);
 $title = $_POST[title];
 
$insert_sql = "INSERT INTO articles (person_id, type, title, information, effect_start)
				VALUES ('".$_SESSION[CLS][userid]."', 'advice', '$_POST[title]', '$new_string', NOW())			
				";
	$res = mysqli_query($mysqli, $insert_sql);
	if ($res === TRUE) {
		echo "pass";
		} else {
		echo "fail";
		}
$get_new_id = "SELECT ID
				FROM articles
				WHERE title = '$_POST[title]'";
if ($res_2 = mysqli_query($mysqli, $get_new_id)) {
	while ($row = mysqli_fetch_row($res_2)) {
		$id = $row[0];
	}		
}	
	
	require("../mail/class.phpmailer.php");
	 
	 
	 if (date("D") == "Sun") { 
				 
 
 
	$get_emails_sql = "SELECT email
					FROM email
					WHERE tips = 'yes'
					OR daily = 'yes'
					";
		if ($result = mysqli_query($mysqli, $get_emails_sql)) {
			while ($row = mysqli_fetch_row($result)) {
				$email = $row[0];
				
$mail = new PHPMailer();
 
$mail->IsSMTP();  // telling the class to use SMTP
$mail->Host     = "mail.high-school-date.com"; // SMTP server
$mail->SMTPAuth   = true;
$mail->Username   = "[email protected]"; // SMTP account username
$mail->Password   = "dike5827";        // SMTP account password
$mail->IsHTML(true);
 
$mail->SetFrom("[email protected]","High-School-Date");
$mail->AddAddress($email);
 
$mail->Subject  = $title;
$mail->Body     = "

	

Check out the newest high school dating advice: ".$title."

"; $mail->WordWrap = 50; if(!$mail->Send()) { echo '

Message was not sent.

'; echo '

Mailer error: ' . $mail->ErrorInfo . '

'; } else { echo '

An email has been sent to '.$email.'

'; } } } /*this is the end of the Sun email */ }

Answer : Can't get php variables into Mail

I've made some minor tweeks which could result in a PHP error,
though i cannot find anything seriously wrong except array usage outside strings

($_POST[information] should be $_POST['information'])

i've also changed the insert id stuff, because basicly you insert an article and then request the id by query, when mysql just returns it to you.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
IsSMTP();  // telling the class to use SMTP
				$mail->Host     = "******"; // SMTP server
				$mail->SMTPAuth   = true;
				$mail->Username   = "*****"; // SMTP account username
				$mail->Password   = "****";        // SMTP account password
				$mail->IsHTML(true);
				$mail->SetFrom("*****","High-School-Date");
				$mail->AddAddress($email);
				$mail->Subject  = $title;
				$mail->Body     = "
									

Check out the newest high school dating advice: ".$title."

"; $mail->WordWrap = 50; if(!$mail->Send()) { echo '

Message was not sent.

'; echo '

Mailer error: ' . $mail->ErrorInfo . '

'; } else { echo '

An email has been sent to '.$email.'

'; } } } }
Random Solutions  
 
programming4us programming4us