What is php mainly used for?
No Answer is Posted For this Question
Be the First to Post Answer
What is framework? How it works? What is advantage?
How many days will it take to learn php?
What is restful api?
hi, i have knowledge about PHP/MYSQL,i am fresher M.Sc-IT 2009 pass out,any recruitment in PHP please let me know.
What is the super method?
Is php a mvc?
What are the different tables(engine) present in mysql, which one is default?
What does mysqli_query return?
Tell me what are the functions to be used to get the image's properties (size, width and height)?
Which of the delimiter is ASP style?
Define urlencode() and urldecode() used in php?
<?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. -->