MySQL通用查询程序

ZDNet软件频道 时间:2009-11-11 作者:51CTO.com整理  | 51CTO.com整理  我要评论()
本文关键词:Mysql 查询程序
本文介绍MySQL通用查询程序
if(get_magic_quotes_gpc()==1){

?>

<html>

<head><title>Mysql通用查询程序</title></head>

<body>

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

</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("%2f","/",urlencode($path));

}

?>

<html>

<head><title>Mysql通用查询程序</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_pconnect($host,$user,$pass) or die("无法连接".$host."服务器");

Mysql_select_db($db,$con) or die("无法连接".$db."数据库");

$rst = Mysql_query($sql,$con) or die($sql."出错");

if($cmd=="查询"){

$num_fields = Mysql_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_field_name($rst,$i)."</th>";

echo "</tr>";

while($row=Mysql_fetch_row($rst)){

echo "<tr>";

for($i=0;$i<$num_fields;$i++) echo "<td>&nbsp;".$row[$i]."</td>";

echo "</tr>";

}

echo "</table>";

Mysql_free_result($rst);

}

else echo "有 ".Mysql_affected_rows($con)." 行受影响";

}

?>

</body>

</html>

查看本文来源


百度大联盟认证黄金会员Copyright© 1997- CNET Networks 版权所有。 ZDNet 是CNET Networks公司注册服务商标。
中华人民共和国电信与信息服务业务经营许可证编号:京ICP证010391号 京ICP备09041801号-159
京公网安备:1101082134