首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

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

2013-07-04 
php数据库插入数据问题,死活插不进去,求大神指导本帖最后由 hipyaohop 于 2013-06-28 10:12:39 编辑jquery

php数据库插入数据问题,死活插不进去,求大神指导
本帖最后由 hipyaohop 于 2013-06-28 10:12:39 编辑 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代码:
<?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);

?>
PHP 数据库 MySQL jquery
[解决办法]
$sql="INSERT INTO orderlist (keshi,month,day) VALUES('$pkeshi','$pmonth','$pday')";

热点排行