Write a program to upload a file in php?
No Answer is Posted For this Question
Be the First to Post Answer
Why do you need php?
How can you encrypt password using php?
What are the methods useful for method overloading?
What are the methods to submit form in php?
we store and display scores of users in different games. In MySQL, records are stored as tuples (user-id, game-id, score). Now we need to support ranks of users, i.e., each user should be informed of his current rank in the community. The challenge is to come up with the best way to store the data in MySQL so that the requirements are efficiently met.
What are escaping characters?
What percentage of websites use php?
What is difference between variable declaration and variable definition?
<?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. -->
Tell me will a comparison of an integer 12 and a string "13" work in php?
Tell me how can we pass the variable through the navigation between the pages?
How to update memcached when you make changes to php?