What is PECL?
No Answer is Posted For this Question
Be the First to Post Answer
Whats the difference between include() and require()?
What type of inheritance that PHP supports?
15 Answers Webwing Technologies,
What is the use of 'print' in php?
What is meant by PEAR in PHP?
What are differences between PECL and PEAR?
Which function would you use to format date information in php?
What language is similar to php?
Tell me what are magic methods?
Explain how to run the interactive php shell from the command line interface?
How can we get the properties (size, type, width, height) of an image using PHP image functions?
<?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. -->
Is empty array php?