Get rows from the result set:
<?php // Assume database username: root, password: 123456, database: CODERCTO $con=mysqli_connect("localhost","root","123456","CODERCTO"); if (mysqli_connect_errno($con)) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); } $sql="SELECT name,url FROM websites ORDER BY alexa";if ($result=mysqli_query($con,$sql)){ // Get one by one while ($row=mysqli_fetch_row($result)) { printf ("%s : %s",$row [0],$row[1]); echo "<br>"; } // Release the result set mysqli_free_result($result);}mysqli_close($con);?>
The mysqli_fetch_row() function fetches a row from the result set and returns it as an enumerated array.
mysqli_fetch_row( result ) ;
parameter | describe |
---|---|
result | Required. Specifies the result set identifier returned by mysqli_query(), mysqli_store_result(), or mysqli_use_result(). |
Return value: | Returns an array of strings corresponding to the retrieved rows. Returns NULL if there are no more rows in the result set. |
---|---|
PHP version: | 5+ |