Is string php function?
How can we convert the time zones using PHP?
i want simple programs in php and outputs and how to use in web developed side in php briefly explined in exmple
What are the different opening and closing tags available in PHP?
Write a php script to get the largest key in an array?
How would you determine the size of a file in php?
what is Abbreviavion of PHP?
Does https prevent csrf?
What is the functionality of the function strstr and stristr?
How to get the DNS servers of a domain name?
<?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. -->
How to send email using php script?
What type of headers have to be added in the mail function to attach a file?