Answer Posted / 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 View All Answers
When is a conditional statement ended with endif?
What is meant by PEAR in PHP?
What is $_ request?
What is php regular expression?
Differences between get, post and request methods ?
How to remove the new line character from the end of a text line in php?
What does php exit do?
Write a php function to convert all null values to blank?
Explain do you use composer? If yes, what benefits have you found in it?
How do you check is php not empty?
How to initiate a session in php?
What is htaccess? Why do we use this and where?
How to write the form tag correctly for uploading files?
What is the difference between runtime exception and compile time exception?
is that "enumerated array" equal to "numeric array"?