php怎么读取数据库里信息 php连接选择数据库*/link=mysql_connect(\"mysql_host\",\"mysql_user\",\"mysql_password\")or die(\"Could not connect:\".mysql_error());print\"Connected successfully;mysql_select_db(\"my_database\")or die(\"Could not select database\");执行 SQL 查询*/query=\"SELECT*FROM my_table;result=mysql_query($query)or die(\"Query failed:\".mysql_error());在HTML 中打印结果*/print\"<;table>;\\n;while($line=mysql_fetch_array($result,MYSQL_ASSOC)){print\"\\t<;tr>;\\n;foreach($line as$col_value){print\"\\t\\t$col_value<;/td>;\\n;}print\"\\t<;/tr>;\\n;}print\"<;/table>;\\n;释放资源*/mysql_free_result($result);断开连接*/mysql_close($link);
php获取mysql数据库里面的所有数据表信息 没这么干过2113 mysql_list_tables 获取 所有表信息 返回指5261针 mysql_tablename 获取表名myslq_num_rows函数来4102判断结果指1653针中的表的数目phpmysql_connect(\"localhost\",\"mysql_user\",\"mysql_password\");result=mysql_list_tables(\"mydb\");for($i=0;i($result);i+)printf(\"Table:%s\\n\",mysql_tablename($result,$i));mysql_free_result($result);这是手册上例子版 后边的不用我说了吧权 sql查询
php读取数据库最新几条 $sql=\"select*from mytb order by time desc limit 5不足5条,没关系。凡事多尝试。