What is split function in php?
No Answer is Posted For this Question
Be the First to Post Answer
What are the data types in php?
What is the phpstorm?
Is php a programming language?
Why laravel is the best php framework in 2019?
<?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. -->
Is not null in php?
Is it easy to learn php?
Explain the different types of errors in php.
How to support multiple-page forms?
How can we connect to a mysql database from a php script?
Explain about objects in PHP?
How many data types are there in php?