How can I find my php version?
No Answer is Posted For this Question
Be the First to Post Answer
What is framework in php for beginners?
What does == mean in php?
Define about declare construct?
Are sessions stateless?
Which cryptographic functions in php returns the longest hash value?
How many escape sequences are recognized in double-quoted strings in php?
Why laravel is best php framework?
<?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. -->
Distinguish between urlencode and urldecode?
How to Retrieve the Session ID of the Current Session?
Is empty check in php?
What is the use of header() function in php?