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
List functions available to sort an php array?
Tell me what kind of things have you done on the social side?
How do you pass a variable by value in php?
What is a controller php?
What are the functions used in php?
What is cookie?
Is echo a function in php?
What is query string php?
Is it difficult to learn php?
why did u want to leave your past organisation?
How does php sessions work?
What are different types of Print Functions available in PHP?
Explain what is the difference between mysql_fetch_array() and mysql_fetch_assoc()?
What is properties of class?
Is php faster than javascript?