我一直在辗转反侧,为什么这个东西不起作用。 这两个字符串不会合并,只会保存$ title。怎么会? :( 即使该帐户是管理员,也不会有效。将保存的帐户的值是admin,但标题不会连接。 :(
自己查看代码
<?php
$con = mysql_connect("localhost","root","");
mysql_select_db("fullcalendar", $con);
$title = $_POST['title'];
$start = $_POST['start'];
$end = $_POST['end'];
$account= $_POST['account'];
$sumpay = 'USC' ;
if($account == "admin")
{
$ti= $title.$sumpay;
}
// insert the records
mysql_query("SELECT * FROM evenement");
mysql_query( "INSERT INTO evenement (id, title, start, end, account)
VALUES ('', '$ti', '$start', '$end' , '$account')");
?>
答案 0 :(得分:0)
尝试使用mysqli...
// first check the values posted using
print_r($_POST);
也做了这个改变......
if($account == "admin")
$ti= $title.$sumpay;
else
$ti= $title;