Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
<?php ob_start(); include("conn.php"); //connection file $sql = "select* from tablename order by rand()"; (rand is function of php not a field) $query = mysql_query($sql); $data = mysql_fetch_array($query); ?> <?php echo $data['m'];?> ( m is field name ) thanks
The End.
anupam294