If video file extension is mp4,avi,mov,3gp,mpeg then upload the reference of video file in MySQL Table.
Create Database and Table
PHP Script
Note : First create a folder manually named “test_upload”.
Because uploaded video file stored in “test_upload” folder.
Because uploaded video file stored in “test_upload” folder.
HTML Form for Video uploading
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <form method="post" enctype="multipart/form-data"> <table border="1" style="padding:10px"> <tr> <Td>Upload Video</td></tr> <Tr><td><input type="file" name="fileToUpload"/></td></tr> <tr><td> <input type="submit" value="Uplaod Video" name="upd"/> <input type="submit" value="Display Video" name="disp"/> </td></tr> </table> </form> |