Explain how can we increase the execution time of a php script?
No Answer is Posted For this Question
Be the First to Post Answer
What is php mean?
hi,am a fresher in sap sd,will i try as a fresher or i wl go for with 2 to 3 yr exp,pls suggest me which web site is best for sap freshers.
How session manage in wordpress
Tell me what is the use of mysql_real_escape_string() function?
What is PHP?
What is csrf validation?
What is member variable?
Which is better python or php?
How to set cookies?
What is the difference between super () and this ()?
How are php sessions stored?
<?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. -->