how we can upload and view video files

Answers were Sorted based on User's Feedback



how we can upload and view video files..

Answer / laxmikant

if($_POST['submit'])
{
if($_FILES['video']['error']>0)
{
echo "error in ur file";
}
else
{
$target_path = "uploads/";

echo $target_path = $target_path . $_FILES['video']['name'];

if(move_uploaded_file($_FILES['video']['tmp_name'],
$target_path)) {
echo "The file ". basename( $_FILES['video']['name']).
" has been uploaded";
} else{
echo "There was an error uploading the file, please try
again!";
}

}

}
<form name="f" action="" method="post"
enctype="multipart/form-data">
<input type="file" name="video" />
<input type="submit" name="submit" value="submit" />
</form>

Is This Answer Correct ?    7 Yes 2 No

how we can upload and view video files..

Answer / vipin gurjar

in php we use upload file by using copy function and copy
that clip in a folder

copy(source,destination)

and then u can specify a path like

<body>

<p>
<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-
444553540000" id="obj1"
codebase="http://download.macromedia.com/pub/shockwave/cabs/
flash/swflash.cab#version=6,0,40,0" border="0" width="160"
height="160">
<param name="movie" value="file:///C:/Documents and
Settings/user/My Documents/My
Pictures/vimages/masterdata.jpg">
<param name="quality" value="High">
<embed src="filePthname%
20Pictures/vimages/masterdata.jpg"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" name="obj1"
width="160" height="160"></object>
</p>

</body>

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More PHP Interview Questions

Tell me how stop the execution of a php scrip?

0 Answers  


How to create the PHP Script to Calculate the Age Using the Inputs Of our Birth date and the Current date?

6 Answers  


How can MYSQL functions be available with PHP?

0 Answers  


What is the purpose of the '.myd' file extension? What do thes file contain?

0 Answers  


Difference between notify url, return url in paypal payment gateway?

4 Answers   A1 Technology, Capital IQ, CMS, Essar, HCL, IAS, Karvy, L&T, State Bank Of India SBI, TATA, Tisco, WNS,






What is empty () in php?

0 Answers  


How do you trim spaces in excel?

0 Answers  


How the result set of mysql be handled in php?

0 Answers  


In mail($param1, $param2, $param3, $param4), the $param2 contains__

1 Answers  


When a conditional statement is ended with an endif?

0 Answers  


what are the errors and when we get that particular errors.and who will give that errors

3 Answers  


What is a null coalescing operator in php7?

0 Answers  


Categories