<?php
if($_POST[ok])
{
$link_id = mysql_connect("localhost","root","") or die("連接失敗");
if($link_id)
{
//選擇數據庫
mysql_select_db("my_test");
//插入數據SQL語句
$sql="insert into userinfo values('".$_POST[id]."','".$_POST[name]."','".$_POST[gender]."','".$_POST[age]."','".$_POST[regdate]."')";
//執行SQL語句
$result=mysql_query($sql);
if($result)
{
echo "記錄已經成功插入<br><a href='insert.php'>繼續插入記錄</a>";
}
else
echo "執行插入SQL語句失敗";
//關閉數據庫
mysql_close($link_id);
}
}
else
{
?>
<form method=post action=insert.php>
編號<input type=text name="id"><br>
姓名<input type=text name="name"><br>
性別<input type=text name="gender" ><br>
年齡<input type=text name="age"><br>
注冊時間<input type=text name="regdate"><br>
<input type=submit name=ok value="提交">
</form>
<?
}//end if
?>