程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> MySQL通用查詢程序

MySQL通用查詢程序

編輯:關於PHP編程

if(get_magic_quotes_gpc()==1){
   ?>
<html>
<head><title>MySQL(和PHP搭配之最佳組合)通用查詢程序</title></head>
<body>
注意本程序需要將php(做為現在的主流開發語言)配置文件(php(做為現在的主流開發語言)3為php(做為現在的主流開發語言)3.ini,php(做為現在的主流開發語言)4為php(做為現在的主流開發語言).ini)中的magic_quotes_gpc
設成Off或0,修改後請重新啟動apache(Unix平台最流行的WEB服務器平台).
</body>
</html>
   <?
   exit();
}

set_magic_quotes_runtime(0);

$host = localhost;
$db = test;
$user = test;
$pass = ;

// [ php(做為現在的主流開發語言)/inc/str2url.php(做為現在的主流開發語言) ] cvs 1.2
function str2url($path){
   return eregi_replace("/","/",urlencode($path));
}
?>

<html>
<head><title>MySQL(和PHP搭配之最佳組合)通用查詢程序</title></head>
<body>

<form action="<?echo str2url($php(做為現在的主流開發語言)_SELF);?>" method="post">
請輸入SQL語句:<br>
<textarea name="sql" cols="100" rows="5"><?echo $sql;?></textarea><br>
<input type="submit" name="cmd" value="查詢">
<input type="submit" name="cmd" value="執行">
</form>

<?
if($cmd){
   $con = MySQL(和PHP搭配之最佳組合)_pconnect($host,$user,$pass) or die(無法連接.$host.服務器);
   MySQL(和PHP搭配之最佳組合)_select_db($db,$con) or die(無法連接.$db.數據庫);
   $rst = MySQL(和PHP搭配之最佳組合)_query($sql,$con) or die($sql.出錯);
   if($cmd==查詢){
      $num_fields = MySQL(和PHP搭配之最佳組合)_num_fields($rst);
      echo <hr>;
      echo <table border="1" cellpadding="0" cellspacing="0">;
      echo <caption align="center">.$sql.</option>;
      echo <tr>;
      for($i=0;$i<$num_fields;$i++) echo <th>&nbsp;.MySQL(和PHP搭配之最佳組合)_field_name($rst,$i).</th>;
      echo </tr>;
      while($row=MySQL(和PHP搭配之最佳組合)_fetch_row($rst)){
         echo <tr>;
         for($i=0;$i<$num_fields;$i++) echo <td>&nbsp;.$row[$i].</td>;
         echo </tr>;
      }
      echo </table>;
      MySQL(和PHP搭配之最佳組合)_free_result($rst);
   }
   else echo 有 .MySQL(和PHP搭配之最佳組合)_affected_rows($con). 行受影響;
}
?>

</body>
</html>




  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved