MySQL通用查询程序

发表于:2008-07-15来源:作者:点击数: 标签:MySQLMysqlmysqlmySQL程序
if(get_magic_quotes_gpc()==1){ ? 注意本程序需要将 PHP 配置文件(PHP3为 php 3.ini,PHP4为php.ini)中的magic_quotes_gpc 设成Off或0,修改后请重新启动Apache. db=’test’; $user=’test’; $pass=’; //[php/inc/str2url.php] cvs 1.2 functionstr2url($p
 
if(get_magic_quotes_gpc()==1){
   ?>



注意本程序需要将PHP配置文件(PHP3为php3.ini,PHP4为php.ini)中的magic_quotes_gpc
设成Off或0,修改后请重新启动Apache.


   db = ’test’;
$user = ’test’;
$pass = ’;

// [ php/inc/str2url.php ] cvs 1.2
function str2url($path){
   return eregi_replace("%2f","/",urlencode($path));
}
?>











数据库’);
   $rst = mysql_query($sql,$con) or die($sql.’出错’);
   if($cmd==’查询’){
      $num_fields = mysql_num_fields($rst);
      echo ’ ’;
      echo ’’;
      echo ’’.$sql.’’;
      echo ’’;
      for($i=0;$i<$num_fields;$i++) echo ’ ’.mysql_field_name($rst,$i).’’;
      echo ’’;
      while($row=mysql_fetch_row($rst)){
         echo ’’;
         for($i=0;$i<$num_fields;$i++) echo ’ ’.$row[$i].’’;
         echo ’’;
      }
      echo ’’;
      mysql_free_result($rst);
   }
   else echo ’有 ’.mysql_affected_rows($con).’ 行受影响’;
}
?>

原文转自:http://www.ltesting.net