code to see the priview of the image which is being uploaded
(after browising the image... just click priview ... how it
will be visible...before uploading)
No Answer is Posted For this Question
Be the First to Post Answer
How does php work with apache?
Which function can be used to exit from the script after displaying the error message?
What is difference between static and constant in php?
Explain Parsing and Execution in PHP? Where PHP Engine Return errors?
What is the difference between html and php?
How can you retrieve data from the mysql database using php?
<?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. -->
What does csrf token mean?
How can we extract string 'abc.com' from a string "http://info@abc.com" using regular expression of PHP
How to get a total number of elements used in the array?
Is php easier than node?
What is list function with their uses.