how to uploade video in php????



how to uploade video in php????..

Answer / rashmi bajpai

On php coding file like uploaded.php<?php
$target_path="../upload/";//this is the name of that folder
in which we r uploading our video.//
$arg=$_FILES['uploadedfile']['tmp_name'];
if(move_uploaded_file($tmp,$target_path))
{
echo "The file". $_FILES['uploadedfile']['name']."has been
uploaded";
}
else
{
echo"there was an error in uploading";
}
?>


On other html file like uploaded.php:
<html>
<form enctype="multipart/form-data" action="uploaded.php"
method="post">//file should always be uploaded by post method.
<input type="hidden" name="MAX_FILE_SIZE" value="100000"/>
Choose a file to upload:
<input name="uploaded file" type="file"/> <br>
<input type="submit" value="upload file"/>
</form>
</html>

Is This Answer Correct ?    24 Yes 3 No

Post New Answer

More PHP Interview Questions

What is php written in?

0 Answers  


What are the advantages of stored procedures, triggers, indexes in php?

0 Answers  


What exactly is validating and sanitizing?

0 Answers  


What types of Data Can Be Used as Array Keys?

0 Answers  


What is printf in php?

0 Answers  






How can we get the error when there is a problem to upload a file?

0 Answers  


what is the abbrevation of PHP?

22 Answers   IBM,


Tell me what is use of in_array() function in php?

0 Answers  


What is php explain how php works?

0 Answers  


Which function you can use in php to open a file for reading or writing or for both?

0 Answers  


Is php secure?

0 Answers  


How can you execute php script from the command line?

0 Answers  


Categories