//連接資料庫 mysql_connect("localhost","帳號","密碼");
$con = mysql_connect("localhost","xxx","xxx");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
//選擇my_db資料庫
mysql_select_db("my_db", $con);
//將剛剛在主頁所選的選項的值 插入到userprofile table中
//另外要先到資料庫中 先建立好userprofile的table,並且要將Context和Profile兩個欄位也都建立
$sql="INSERT INTO userprofile (Context, Profile)
VALUES ('$_POST[context]','$_POST[profile]')";
mysql_query($sql);
沒有留言:
張貼留言