php数据库插入数据问题,死活插不进去,求大神指导

WBOY
發布: 2016-06-23 14:14:18
原創
1547 人瀏覽過

本帖最后由 hipyaohop 于 2013-06-28 10:12:39 编辑

PHP 数据库 MySQL jquery

jquery代码:
$(".detailtextable").click(function () {
    $s_keshi=$(".cla_title").attr("alt");
    $s_month=$(".nyr_center").attr("alt");
    $s_day=$(this).attr("alt");
    $.ajax({  
        type: "POST",  
     url: "http://localhost/hos1/orderinsert.php",  
      data: {skeshi:$s_keshi,smonth:$s_month,sday:$s_day},
      success: function(){  
      alert(1);
      }  
    });
});
$s_day,$s_keshi..里面都有数据,alert过了.
orderinsert.php代码:
session_start();
$con = mysql_connect("localhost","root","mysql");
if(!$con)
{
die("Could not connect: " . mysql_error());
}
$pkeshi=$_POST['skeshi'];
$pmonth=$_POST['smonth'];
$pday=$_POST['sday'];
mysql_select_db("hos_db",$con);
$sql="INSERT INTO orderlist (keshi,month,day) 
VALUES($pkeshi,$pmonth,$pday)";
mysql_query("set names 'utf8'");
if(!mysql_query($sql,$con))
{
die("Error: " . mysql_error());
}
mysql_close($con);

?>

回复讨论(解决方案)

$sql="INSERT INTO orderlist (keshi,month,day) VALUES('$pkeshi','$pmonth','$pday')";

非常感谢,谢谢

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板