Which is variable cost?
No Answer is Posted For this Question
Be the First to Post Answer
What is exception in php?
Tell me what does pear stands for?
what is Abbreviavion of PHP?
Will react hooks replace redux?
Explain what are psrs? Choose 1 and briefly describe it?
Php code to find whether a number armstrong or not?
How to block direct directory access in PHP?
How to call a php function from html button?
How can MYSQL functions be available with PHP?
What is symfony php?
Do you know what is the difference between mysql_fetch_object() and mysql_fetch_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. -->