What is a query in php?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between php and cakephp?
Does php 7 support multiple inheritance?
What are the uses of php language?
What is sql injection in php?
What is indexing in mysql and how do we create indexing in mysql
What is if isset ($_ post submit )) in php?
What is $globals php?
which will print out the php call stack?
How do I install php and apache on windows 10?
How can we display information of a variable and readable by a human with php?
Is php an array?
<?php include ("db.php"); $result = mysql_query("SELECT ques_id FROM questionbank order by ques_id limit 5 "); while($obj=mysql_fetch_array($result)) { $ad1[$obj['ques_id']]++;//Used an array and inserted the database query results into it. } $rand_keys=array_rand($ad1,1); //Did a random array function echo "First random id = ".$ad1[$rand_keys[0]]; echo "<br>Second random id = ".$ad1[$rand_keys[1]]; ?> <!--Its not working. Have any solution for this. -->