<?php
// chat poster
$db = new PDO('mysql:host=127.0.0.1;dbname=wordpower','root','bheq0913');
//secure the chat
if(isset($_POST['text'])&& isset($_POST['name'])){
$text = strip_tags(stripslashes($_POST['text']));
$name = strip_tags(stripslashes($_POST['name']));
if(!empty($text) && !empty($name)){
$insert = $db->prepare("INSERT INTO chat VALUES('', '".$name"', '".$text"') ");
$insert->execute();
echo "<li class="cm"><b>".ucwords($name)."</b> - ".$text."</li>";
}
}
?>
请帮我解决这个错误,它说
解析错误:第12行的C:\ xampp \ htdocs \ webko \ insert.php中的语法错误,意外的“”,“”(T_CONSTANT_ENCAPSED_STRING)