先select查詢,返回的結(jié)果顯示到表單中。
成都創(chuàng)新互聯(lián)是一家專業(yè)提供棗莊企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、html5、小程序制作等業(yè)務(wù)。10年已為棗莊眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進(jìn)行中。
在update操作,將在表單中修改的結(jié)果更新到數(shù)據(jù)庫中。
很容易的,用thinkphp做更容易。
填寫到input框:$("input").val("hello world!");
匹配填寫到頁面:$("p").html("Hello bworld/b!");
首先呢,我先說一下,你的sql語句報(bào)錯(cuò)是因?yàn)槟阋樵兊膖ime是一個(gè)字符串,要用引號,不然會報(bào)錯(cuò)
其次呢,你既然想在這邊下拉表單選擇一個(gè)值傳遞出去,那么最簡單的方法用的就可以是js ?你的代碼中form沒有提交表單按鈕,那么就是使用js讓它充當(dāng)提交按鈕 用到了 下拉選擇框的onchange屬性
具體寫法呢:
form?action="xianshi.php"?method="post"?id="form"?!--這里給表單一個(gè)id--
fieldsetlegend選擇您要查看的日期/legend
pb測量日期/b
select?name="time"?onchange="fun()"??!--這里的給一個(gè)onchange事件?也就是說當(dāng)下拉框的值改變時(shí)將觸發(fā)onchange里面的函數(shù)fun()--
?php
while($colum=mysqli_fetch_array($result)){
?
option?value="?php?echo?$colum["time"];?"?php?echo?$colum["time"];?/option;?
?php
}
?
!--下面是js代碼??對fun函數(shù)進(jìn)行操作--
script?type="text/javascript"
function?fun(obj){
var?form?=?document.getElementById("form");//選中你的表單
form.submit();???//執(zhí)行提交
}
/script
這個(gè)簡單,首先你得先要鏈接好數(shù)據(jù)庫,其次就是查詢數(shù)據(jù)庫,就2步。
至于查看,刪除的就更簡單了,帶上id號就行了
?php?
mysql_connect("localhost","你的數(shù)據(jù)庫用戶名","你的數(shù)據(jù)庫密碼");
mysql_select_db("你的數(shù)據(jù)庫");
$sql=mysql_query("select?*?from?數(shù)據(jù)表");
?
table?width="100%"?border="0"
tr
tdID/td
td名稱/td
td操作/td
/tr
?php?while($row=mysql_fetch_array($sql)){?
tr
td?php?echo?$row['字段名']?/td
td?php?echo?$row['字段名']?/td
tda?href="?id=?php?echo?$row['id字段']?"查看/a/td
/tr
?php?}?
/table
首先可以采用的是Jquery的Ajax技術(shù)進(jìn)行操作。
思路是這樣的,首先現(xiàn)在前端判斷JS并提交給后臺,代碼如下:
$(function(){
$.ajax({
type:post,
dataType:json,
url:?save.php,
data:$("input[name=x]").val(),
success:function(data){
}
});
});
這樣后端接收到Ajax請求后進(jìn)行連接數(shù)據(jù)庫并且插入數(shù)據(jù)
其它操作類似進(jìn)行操作即可。
初學(xué)者寫的,你可以試試
form?name="myform"?method="post"?action="mysql.php"
table?border="1"
tr
td?width="605"?height="51"?bgcolor="#CC99FF"?colspan="2"
div?align="center"請輸入用戶名稱
input?name="txt_user"?type="text"?id="txt_user"?size="25"nbsp;
input?type="submit"?name="Submit"?value="查詢"
/div
/td
/tr
tr
td?align='center'用戶名稱/td
td?align='center'年齡/td
/tr
?php
//?mysql_connect(服務(wù)器,用戶名,密碼)
$link?=?mysql_connect("localhost","root","root");
//?mysql_select_db(數(shù)據(jù)庫,$link)
$db_selected?=?mysql_select_db("php_test",$link);
//?編碼格式(貌似很重要)
mysql_query("set?names?'utf8'");
?
?php
$sql?=?mysql_query("select?name_,age_?from?t_user");
$info?=?mysql_fetch_array($sql);
if($_POST[Submit]=="查詢"){
$txt_user?=?$_POST[txt_user];
$sql?=?mysql_query("select?*?from?t_user?where?name_?like?'%".trim($txt_user)."%'");
$info?=?mysql_fetch_array($sql);
}
?
?php
if($info==false){
echo?'trtd?width="605"?height="51"?bgcolor="#CC99FF"?colspan="2"';
echo?"div?align='center'?style='color:#FF0000;font-size:12px;'對不起,您查找的用戶信息不存在!/div";
echo?'/td/tr';
}elseif($info){
echo?'elseif';
}
?
?php
do{
?
tr?align="center"?bgcolor="#FFFFFF"
td?height="20"align="center"??php?echo?$info['NAME_']?/td
td??php?echo?$info['AGE_']?/td
/tr
?php
}while($info?=?mysql_fetch_array($sql));
mysql_free_result($sql);
mysql_close($link);
?
/table
/form