2015年1月1日 星期四

php新增資料到big5語系的MySQL DB

php新增資料到big5語系的MySQL DB


 


 


<?php
    //----------連接資料庫----------
$condb=mysql_connect("127.0.0.1","root","qwertyuiop");
if(!$condb)
die("error:".mysql_error());
mysql_select_db("webdb",$condb);
mysql_query("SET NAMES 'big5'");
        mysql_query("SET CHARACTER SET big5");
//----------連接資料庫---------

$sql="INSERT INTO cuty (cutyno, cutyname) VALUES ( '".$_POST['cutyno']."', '".$_POST['cutyname']."')";
echo$sql;
     if(!mysql_query($sql,$condb))
die("error:".mysql_error());
mysql_close($condb);
?>
<script>
location.href = "../index.php?$Select=65";
</script>


















 






沒有留言:

張貼留言