Home Tutorial Php Sql Php Sql Random

 
 

Php Sql Random
Posted on: December 10, 2010 at 12:00 AM
This example illustrates how to fetch random data from database table.

Php Sql Random

This example illustrates how to fetch random data from database table.

In this example we create select statement with ORDER BY RAND() clause. The RAND() clause is used to fetch data from table randomly. The output display on the browser  as below, when refresh the browser data fetched randomly from table.

 

Table: users

 

Source Code of sql_random.php 

<?php
  $con = mysql_connect("localhost","root","root");
  if (!$con){
    die('Could not connect: ' . mysql_error());
  }
  mysql_select_db("test", $con);

  $result = mysql_query("SELECT email FROM users ORDER BY RAND()");

  if (!$result) {
    echo 'Could not run query: ' . mysql_error();
    exit;
  }

  $row = mysql_fetch_array($result);
  echo "<b>Email: </b>";
  echo $row['email']."<br>";
?>

Download Source Code

 

Output:

 

Related Tags for Php Sql Random:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.