Explain Whitespace Characters?
No Answer is Posted For this Question
Be the First to Post Answer
How to read the entire file into a single string?
What is data abstraction 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. -->
What is the use of stripslashes in php?
Is laravel frontend or backend?
What is the correct and the most two common way to start and finish a php block of code?
Is php a low level language?
How can we submit a form without a submit button?
What is difference between get and post?
How to get useful error messages in php?
What are the basic steps to store PHP session in to Database?
Write a program using while loop in php?