HTML CODE TO UPLOAD VIDEO?

jethinrajan

New member
I had created a free website in which i have the option to add html codes.
so need an html code to place an upload button in my page and using that button anyone who views my site can upload videos in that page. and the uploaded videos should be shown in the page and also need to play the selected video by anyone.

can any1 help?
 
here is your code,you can change of limit for uploading file....<html>
<body>
<form action="fileinsert.html"
method="post">
<p>
Enter Your Text (Optional):<br> <input type="text" name="textwrite"
size="15">
</p>
<p>
Specify your File:<br>
<input type="file" name="datasize" size="30">
</p>
<div>
<input type="submit" value="Send">
</div>
</form> </body>
</html>
 
<form action="upload.htm" method="post" enctype="multipart/form-data">
File: <input name="file" type="file" />
<input type="submit" value="Upload" />
</form>

However, you will also need a server part, which can accept the uploaded files (for example a php script).
 
Back
Top