国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

php列出mysql表所有行和列的方法

Original 2017-02-07 11:21:34 351
abstract:本文實例講述了php列出mysql表所有行和列的方法。分享給大家供大家參考。具體實現(xiàn)方法如下:<html><head> <title>Selecting Data</title> </head> <body> <?php $user = "root"; $pass&nbs

本文實例講述了php列出mysql表所有行和列的方法。分享給大家供大家參考。具體實現(xiàn)方法如下:<html>

<head>
<title>Selecting Data</title>
</head>
<body>
<?php
$user = "root";
$pass = "";
$db = "mydatabase";
$link = mysql_connect( "localhost", $user, $pass );
if ( ! $link ) {
  die( "Couldn't connect to MySQL: ".mysql_error() );
}mysql_SELECT_db( $db, $link ) or die ( "Couldn't open $db: ".mysql_error() );$result = mysql_query( "SELECT * FROM domains where sex='F'" );
$num_rows = mysql_num_rows( $result );print "<p>$num_rows women have added data to the table</p>\n";print "<table>";
while ( $a_row = mysql_fetch_row( $result ) ) {
  print "<tr>";
  foreach ( $a_row as $field ) {
    print "<td>".stripslashes($field)."</td>";
  }
  print "</tr>";
}
print "</table>";
mysql_close( $link );
?>
</body>
</html>

更多關(guān)于php列出mysql表所有行和列的方法請關(guān)注PHP中文網(wǎng)(www.miracleart.cn)其他文章!

Release Notes

Popular Entries