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 */
}
|