Ошибка тела HTML Phpmailer
Я пытаюсь отправить электронное письмо в стиле HTML в PHPMailer. Получение ошибки с этой строкой:
echo "<table id='myTable' style='border: solid 1px black;'>";
Ошибка:
PHP Parse error: syntax error, unexpected 'myTable' (T_STRING) in /var/www/html/tsl/email1.php on line 46
Полный Код Тела:
$mail->isHTML(true); $mail->Body = ' <html> <style> table { border-spacing: 0; border: 1px solid #ddd; } th, td { text-align: left; padding: 16px; } tr:nth-child(even) { background-color: #f2f2f2 } </style> <body onload="sortTable()"> <center> <?php echo "<table id='myTable' style='border: solid 1px black;'>"; echo "<tr><th>FullName</th><th>result</th></tr>"; class TableRows extends RecursiveIteratorIterator { function __construct($it) { parent::__construct($it, self::LEAVES_ONLY); } function current() { return "<td style="width: 150px; border: 1px solid black;">" . parent::current(). "</td>"; } function beginChildren() { echo "<tr>"; } function endChildren() { echo "</tr>" . "\n"; } } $servername = "REMOVED"; $username = "REMOVED"; $password = "REMOVED"; $dbname = "REMOVED"; try { $conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password); $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $stmt = $conn->prepare("SELECT fullName, result FROM results where dateTime > CURDATE() "); $stmt->execute(); // set the resulting array to associative $result = $stmt->setFetchMode(PDO::FETCH_ASSOC); foreach(new TableRows(new RecursiveArrayIterator($stmt->fetchAll())) as $k=>$v) { echo $v; } } catch(PDOException $e) { echo "Error: " . $e->getMessage(); } $conn = null; echo "</table>"; ?> </center> <script> function sortTable() { var table, rows, switching, i, x, y, shouldSwitch; table = document.getElementById("myTable"); switching = true; /*Make a loop that will continue until no switching has been done:*/ while (switching) { //start by saying: no switching is done: switching = false; rows = table.rows; /*Loop through all table rows (except the first, which contains table headers):*/ for (i = 1; i < (rows.length - 1); i++) { //start by saying there should be no switching: shouldSwitch = false; /*Get the two elements you want to compare, one from current row and one from the next:*/ x = rows[i].getElementsByTagName("TD")[0]; y = rows[i + 1].getElementsByTagName("TD")[0]; //check if the two rows should switch place: if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) { //if so, mark as a switch and break the loop: shouldSwitch = true; break; } } if (shouldSwitch) { /*If a switch has been marked, make the switch and mark that a switch has been done:*/ rows[i].parentNode.insertBefore(rows[i + 1], rows[i]); switching = true; } } } </script> </body> </html>';
Что я уже пробовал:
Я думаю, что это как-то связано с цитатами, но не уверен точно, поэтому я попытался настроить их безрезультатно, но, вероятно, сделал это неправильно.
Cody O'Meara
Поэтому я устранил ошибку, используя \' в качестве кавычек для некоторых, которые создавали проблему. Но теперь у меня возникла проблема.
$Конн-и GT;метод setAttribute(методом PDO::ATTR_ERRMODE, методом PDO::ERRMODE_EXCEPTION);
$stmt = $conn->prepare("SELECT fullName, result FROM results where dateTime > CURDATE() ");
$stmt->выполнить();
// установите результирующий массив в ассоциативное значение
$result = $stmt->setFetchMode(PDO::FETCH_ASSOC);
по каждому элементу(новый TableRows(новый RecursiveArrayIterator($полу-и GT;fetchAll())) А $К=и GT;$в) {
echo $v;
}
}
catch(PDOException $e) {
echo "Error:" . $e->getMessage();
}
$conn = null;
эхо "";
ZurdoDev
В чем же ошибка?