我无法保存选择选项的值:如果值为“T'est”,我无法将完整的字符串“T'est”保存在数据库中。
if(isset($_POST['ul'])){
$festival_type = addslashes(mysql_escape_string($_POST['tf']));
$query = mysql_query("INSERT INTO festival (festival_name) VALUES ('".$festival_type."')");
echo "Success!";
}