php表格顯示資料庫
用<table></table>就可以了啊,然後用PHP的逐條輸出數據語句相結合,你圖太小,根本看不清,不過道理就是這么個道理的
2. PHP如何顯示資料庫表到頁面最好有代碼
mysqli_query(showtables)//顯示當前資料庫下所有表然後再mysql_fetch_assoc或其他的
3. php中怎麼在表格中顯示資料庫數據
數據上傳到php空間 。。數據代碼填對應的數據內容就可以了。。比如images=「xxxx.jif」把文件gif上傳到空間就好了。。路勁要指示真確。。。
4. php用表單形式顯示資料庫信息
初學者寫的,你可以試試
<formname="myform"method="post"action="mysql.php">
<tableborder="1">
<tr>
<tdwidth="605"height="51"bgcolor="#CC99FF"colspan="2">
<divalign="center">請輸入用戶名稱
<inputname="txt_user"type="text"id="txt_user"size="25">
<inputtype="submit"name="Submit"value="查詢">
</div>
</td>
</tr>
<tr>
<tdalign='center'>用戶名稱</td>
<tdalign='center'>年齡</td>
</tr>
<?php
//mysql_connect(伺服器,用戶名,密碼)
$link=mysql_connect("localhost","root","root");
//mysql_select_db(資料庫,$link)
$db_selected=mysql_select_db("php_test",$link);
//編碼格式(貌似很重要)
mysql_query("setnames'utf8'");
?>
<?php
$sql=mysql_query("selectname_,age_fromt_user");
$info=mysql_fetch_array($sql);
if($_POST[Submit]=="查詢"){
$txt_user=$_POST[txt_user];
$sql=mysql_query("select*fromt_userwherename_like'%".trim($txt_user)."%'");
$info=mysql_fetch_array($sql);
}
?>
<?php
if($info==false){
echo'<tr><tdwidth="605"height="51"bgcolor="#CC99FF"colspan="2">';
echo"<divalign='center'style='color:#FF0000;font-size:12px;'>對不起,您查找的用戶信息不存在!</div>";
echo'</td></tr>';
}elseif($info){
echo'elseif';
}
?>
<?php
do{
?>
<tralign="center"bgcolor="#FFFFFF">
<tdheight="20"align="center"><?phpecho$info['NAME_']?></td>
<td><?phpecho$info['AGE_']?></td>
</tr>
<?php
}while($info=mysql_fetch_array($sql));
mysql_free_result($sql);
mysql_close($link);
?>
</table>
</form>
5. PHP,如何表單保存到資料庫並且顯示
首先可以採用的是Jquery的Ajax技術進行操作。
思路是這樣的,首先現在前端判斷JS並提交給後台,代碼如下:
$(function(){
$.ajax({
type:post,
dataType:json,
url:save.php,
data:$("input[name=x]").val(),
success:function(data){
}
});
});
這樣後端接收到Ajax請求後進行連接資料庫並且插入數據
其它操作類似進行操作即可。
6. php中怎麼在表格中顯示資料庫數據
把從資料庫中查詢出來的數據是一個數組,循環數組,把table標簽放在循環外邊,循環行或者列,把數據寫入表格中。
你最好發一個圖片,圖片是你想要的樣式,好幫你設計
7. php與mysql連接資料庫並向表格顯示資料庫內容。
正好寫過。
就是用個between查詢一下。關鍵在於拼查詢語句。至於前台的提交用個My97DatePicker插件就可以選日期快速輸入了。
我給你個php的小函數:
function deal_date_condition($_field, $_date_str) {
$_date_arr = explode(",", $_date_str);
$_top = strtotime($_date_arr[0]);
if (isset ($_date_arr[1])) {
$_below =strtotime( $_date_arr[1]);
$_condition = "`$_field` between '" . $_top . "' and '" . $_below . "'";
} else {
$_condition = "`$_field` = '" . $_top . "'";
}
return $_condition;
}
說明:
傳入:$_field欄位名。即資料庫的存儲時間的欄位。一般用時間戳。
$_date_str,時間。有頭有尾的話(兩個時間空都填)是xxx1,xxx2格式,(注意是以逗號分隔,加逗號拼接和傳輸到php的話依靠前台的ajax。)查詢從xxx1到xxx2這段時間的數據。只有一個時間的話就是xxx1,查詢日期為xxx1當天。
返回:$_condition,拼接到查詢語句尾巴後。
比如"select `大小`,MD5`,`創建時間`,`狀態` from `數據表1` where" .$_condition
欄位名表明修改成資料庫里的即可出查出數據。至於如何呈現,教科書都會寫吧query,fetch_array,然後foreach之類的。。
8. php讀取mysql,如何以表格顯示數據
<?php
//設置編碼格式
header("Content-type:text/html;charset=utf-8");
//鏈接資料庫
$conn = mysql_connect("localhost","root","");
//選擇要操作的資料庫
mysql_select_db('act1',$conn);
//設置操作資料庫編碼格式
mysql_query("set names utf8");
//執行查詢操作
$re= mysql_query("select user_name,phone from user");
?>
<table border='1px'>
<!-- 表格頭部 -->
<tr>
<td>用戶名</td><td>電話</td>
</tr>
<?php
//每循環一次,取一行數據記錄顯示在一行中
while($row=@mysql_fetch_row($re)){
?>
<tr>
<td><?php echo $row[0];?></td><td><?php echo $row[1];?></td>
</tr>
<?php
}
?>
</table>
9. php如何查詢資料庫表中的數據並顯示
這個簡單啊!
首頁做個前台輸入姓名和會員卡信息的頁面,我做個簡單的頁面給你看
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""
<htmlxmlns="
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>會員查詢系統</title>
</head>
<body>
<formid="form1"name="form1"method="post"action="test.php">
<p>
<labelfor="name"></label>
<inputtype="text"name="name"id="name"/>
</p>
<p>
<labelfor="vipid"></label>
<inputtype="text"name="vipid"id="vipid"/>
</p>
<p>
<inputtype="submit"name="button"id="button"value="查詢"/>
</p>
</form>
</body>
</html>
然後我給你一個test.php的文件代碼:
<?php
$name=trim($_POST['name']);
$vipid=trim($_POST['vipid']);
$con=mysql_connect("127.0.0.1","資料庫用戶名","資料庫密碼");
if(!$con)
{
die('Couldnotconnect:'.mysql_error());
}
$a=mysql_select_db("資料庫名字",$con);
$sql="select*fromkh_customerwherename='$name'andvipid='$vipid'";
$result=mysql_query($sql);
while($row=mysql_fetch_array($result))
{
echo$row['name']."".$row['data'];
echo"<br/>";
}
mysql_close($con);
?>
頁面美化自己去搞!只能幫你這么多了