Write the code for upload a video file in PHP.How will You
Play this in Your Page.?

Answers were Sorted based on User's Feedback



Write the code for upload a video file in PHP.How will You Play this in Your Page.?..

Answer / imteyazhaider

by using object and embed method

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-
444553540000"......

and

<embed src="test.wmv .......

Is This Answer Correct ?    12 Yes 7 No

Write the code for upload a video file in PHP.How will You Play this in Your Page.?..

Answer / sai suman

In u'r form tag keep an attribute called enc-type with
multipart/form-data

eg:
<form name="upload" id="upload" action="upload.php"
method="post" enctype="multipart/form-data">

So this makes the browser to think that the form is posting
a file as data and this file is sent as chunks, the file
details will be stored in a variable called $_FILES.

In u'r php file just use move_uplode_file("$temp name,<new
file path>")..

Also check the max file size in php.ini while uploading

Is This Answer Correct ?    13 Yes 10 No

Post New Answer

More PHP Interview Questions

Where do we use get and post?

0 Answers  


Is facebook still in php?

0 Answers  


What is singleton class in php?

0 Answers  


Which function(s) in PHP computes the difference of arrays?

0 Answers  


Describe the differences between the object models in PHP 4 and PHP 5.

1 Answers  






What is the maximum size of a file that can be uploaded using PHP and how can we change this?

4 Answers  


What is full form of php? Who is the father or inventor of php?

0 Answers  


What is php date function?

0 Answers  


Explain what are the two main string operators?

0 Answers  


What is array and function?

0 Answers  


what is array_search() in php?

2 Answers  


What is .htaccessfile and use of this file

5 Answers  


Categories