你上面用的char也可以 用int也行,0為男,1為女,這些就是一個標志,不一定數據庫中必須為男女 只要程序能讀的懂能表達的清楚就ok了
創新互聯公司是一家專業提供沁陽企業網站建設,專注與成都做網站、成都網站建設、H5技術、小程序制作等業務。10年已為沁陽眾多企業、政府機構等服務。創新互聯專業的建站公司優惠進行中。
input type="radio" name="sex" value="男" ?php if ($sex=='男') echo "checked" ;? /
input type="radio" name="sex" value="女" ?php if ($sex=='女') echo "checked" ;? /
$sex是你的性別變量名
調用指定ID,例如查看張三的簡歷
?php
$link=mysql_connect("localhost","root","root");//賬號,密碼???
if(!$link)?echo?"沒有連接成功!";???
mysql_select_db("data1",?$link);//選擇數據庫??
mysql_set_charset('utf8',?$link);?
$sql?=?"SELECT?*?FROM?info?where?id=1";//SQL查詢語句,指定你要獲取的ID,info為表名???????????
$rs?=?mysql_query($sql,?$link);//獲取數據集??
$row=mysql_fetch_array($rs);
?
table?width="505"?border="0"
tr
td?bgcolor="#CCCCCC"nbsp;姓名/td
td?bgcolor="#CCCCCC"nbsp;年齡/td
td?bgcolor="#CCCCCC"nbsp;性別/td
td?bgcolor="#CCCCCC"nbsp;籍貫/td
/tr
tr
tdnbsp;?php?echo?$row['name'];?/td
tdnbsp;?php?echo?$row['age'];?/td
tdnbsp;?php?echo?$row['sex'];?/td
tdnbsp;?php?echo?$row['hometown'];?/td
/tr
/table
以上將輸出張三的建立信息。
我根據你說的,創建數據庫data1,編碼是utf8格式的,你自己注意下。
你是什么數據庫,不同數據庫調用方法也不同,比如mysql,一般寫法,
?php
$link=mysql_connect("localhost","root","root");//連接數據庫
mysql_select_db("庫名");//選擇庫
$sql="select?name,sex,age?from?user";
$rs=mysql_query($sql);
while($row=mysql_fetch_object($rs)){?
trtd?php?echo?$row['name']?/tdtd?php?echo?$row['sex']?/tdtd?php?echo?$row['age']?/td/tr
?php?}?
查看一下代碼:
?php
//?獲取表單提交值
$student_id?=?intval(trim($_POST['student_id']));
//?頁面表單??可以放單獨的html文件中,如果放單獨的html頁面中?form?的action的地址要改成下面的PHP文件名
echo?'form?action=""?method="post"
input?type="text"?name="student_id"?value="{$student_id}"/
input?type="submit"?name="submit"?value="查詢"/
/form';
//?當有數據提交時
if?($student_id)
{
$con=?mysql_connect("localhost","root","111")?or?die("連接錯誤");
mysql_select_db("examination",$con);
//?查詢
$sql?=?"SELECT?*?FROM?tablename?WHERE?student_id?=?$student_id?";
$res=mysql_query($sql);
$row=mysql_fetch_array($res);
//?輸出
echo?'學號:'.$row['student_id'].'br姓名:'.$row['name'].'br性別:'.$row['gender'].'br分數:'.$row['score'];
}
?
網頁標題:php性別數據庫 數據庫性別設置為男女
網站路徑:http://vcdvsql.cn/article6/hehjig.html
成都網站建設公司_創新互聯,為您提供App開發、品牌網站制作、虛擬主機、網站導航、全網營銷推廣、網站策劃
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯