PHP--動態產生sql查詢表格

來源:互聯網
上載者:User

標籤:php   mysql   

<?php

include("../../../Applications/MAMP/htdocs/dbconfig.php");

$link = mysql_connect(

  $dbconfig[‘host‘],

  $dbconfig[‘username‘],

  $dbconfig[‘userpass‘]

  );

  

if(!$link){

     die("串連資料庫失敗!錯誤號碼為:".mysql_errno()."失敗原因".mysql_error());

}

$db=mysql_select_db($dbconfig[‘dbname‘]);

if(!$db){

     die("選擇資料庫失敗!錯誤號碼為:".mysql_errno()."失敗原因".mysql_error());

}

$sql="SELECT * FROM womei";

$re=mysql_query($sql);

//輸出表格頭

echo("<table width=‘80%‘ border=1 align=‘center‘ cellpadding=5 cellspacing=0>");

echo("<tr><td>std</td><td>其他1</td><td>nanaha</td></tr>");

if(mysql_num_rows($re)>0){

while($rows=mysql_fetch_assoc($re)){

echo("<tr>");

echo("<td>".$rows["std"]."</td>");

echo("</tr>");

}

}else{

echo(‘<tr><td colspan=5><font color="red">表中沒有任何資料</tr>‘);

}

echo("</table>");

/*建立表

$sql="CREATE TABLE womei(std int(3) not null primary key)";

if(mysql_query($sql)) {

     echo("建立表成功");

}

else{

     echo("建立表不成功");

}

*/

/*

$sql="INSERT INTO womei(std) VALUES(0)";

if(mysql_query($sql)) {

     echo("插入資料成功");

}

else{

     echo("插入資料不成功");

}

*/

?>


本文出自 “iamLAN” 部落格,請務必保留此出處http://zhiliangzeng.blog.51cto.com/9324452/1546780

PHP--動態產生sql查詢表格

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.