What is fetch array in php?
No Answer is Posted For this Question
Be the First to Post Answer
What are the encryption functions in php?
List types of array are available in php?
How to submit form without a submit button.
can any please tel me about "Expression Engine"
What is == and === in php?
Is json a string php?
What are the rules for naming a php variable?
What is meant by nl2br()?
4 Answers Rushmore Consultancy,
What is The difference between ' and " where they can ben in between or outmost and how
<?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. -->
Explain the changes in php versions?
What is stripslashes php?