What is php key?
No Answer is Posted For this Question
Be the First to Post Answer
What are the string function in php?
What is the advantage of runtime polymorphism?
Can i get free good material for preparation for Zend Certification can i get good questions about certification?
How to track no of user logged in?
what is the best function that can be used to connect to mysql database and in what cases that we can use below functions ? 1. mysql_connect() 2. mysql_pconnect() please give your answer with all pros and cons
What are psrs?
Is md5() is breakable if yes than how?
<?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. -->
Explain me how to include a file to a php page?
What is $$ in php?
What is full form of PHP?
This question is regarding version control. If two developers are committing the same php file at same time what will happen ? What error it will show (if any) ?