<?php
{
printf("%s,%s,%s\n",__FILE__,__FUNCTION__,__LINE__);
}
if (false == $ret)
{
printf("%s,%s,%s\n",__FILE__,__FUNCTION__,__LINE__);
}
$ret = mysql_query($sql,$con);
while(true)
{
$row = mysql_fetch_row($ret);
if (false == $row)
{
break;
}
var_dump($row);
}
?>
//连接数据库
$con = mysql_connect("localhost","root","root");
if (false == $con){
printf("%s,%s,%s\n",__FILE__,__FUNCTION__,__LINE__);
}
//选择数据库
if (false == $ret)
{
printf("%s,%s,%s\n",__FILE__,__FUNCTION__,__LINE__);
}
//执行sql语句
$ret = mysql_query($sql,$con);
//输出sql结果
while(true)
{
$row = mysql_fetch_row($ret);
if (false == $row)
{
break;
}
var_dump($row);
}
?>