具體方法操作如下:
成都創(chuàng)新互聯(lián)公司是專業(yè)的建鄴網(wǎng)站建設(shè)公司,建鄴接單;提供成都做網(wǎng)站、成都網(wǎng)站制作,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行建鄴網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
?php
$hostName = 'yourhost';
$userName = 'yourusername';
$passWords = 'yourpwd';
$conn = mysql_conn($hostName,$userName,$passWords);
if(!$conn){
die('Could not connect: ' . mysql_error());
}
$mysql_select_db('admin',$conn);
$sql="INSERT INTO user_zy (username, name, time,place,type,http,password)
VALUES
('$_POST[username]','$_POST[name]','$_POST[time]','$_POST[place]','$_POST[type]',
'$_POST[http]','$_POST[password]')";
mysql_query($sql,$conn); //這里是添加數(shù)據(jù)。
//讀取數(shù)據(jù)
$sql = "select * form user_zy where 1"; //讀取所有。
$sql = "select * form user_zy where id=".$id; //讀取某一項。
$result = mysql_query($sql,$conn);
while($info = mysql_fetch_array($result)){
$arr[] = $info; //$arr 為最后所要讀取的值。
}
可以用var_dump($arr)打印出來看看。
首先,你得在diaocha.php這個文件,接收表單傳的值
$radiogroup = isset($_POST['radiogroup'])?$radiogroup:'';
isset用來檢測是否有選中提交,然后就是數(shù)據(jù)庫的鏈接
$con = mysql_connect('localhost','root',''); //三個參數(shù),分別是,連接的主機名,mysql的賬號,mysql密碼
mysql_query('set names utf8'); //設(shè)置連接的字符集,如果頁面是utf8的編碼,就是utf8,如果是gbk的話,那就寫 set names gbk
mysql_select_db('xxx',$con);nbsp; //xxx就是你要選擇的數(shù)據(jù)庫名稱
插入數(shù)據(jù)
$sql = "insert into xxxx set xxx = $radiogroup" //xxxx 是你要插入的表名,xxx就是字段名
mysql_query($sql);
$num 入庫物資數(shù)量
$class 物品類別
mysql_query("update 庫存表 set 數(shù)量=數(shù)量+$num where 物品種類='$class'");
?php
include(conn.php);
$n=$_POST[name];
$sql="insert into table (name) values($n)";
$result=mysql_query($sql);
if($result){
echo "scriptalert('成功');window.location.href='aaa.php';";
}
?
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ""
html xmlns=""
head
meta http-equiv="Content-Type" content="text/html; charset=utf-8" /
titleaaa.php/title
/head
body
form name="form1" method="post" action="aaa.php"
table width="300px"trtdinput name="name" value=""http://tdtdinput type="submit" value="提 交"http://td/tr/table
/form
/body
/html
比較簡單,參考下~