video file uploading

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
bhanu
Forum Commoner
Posts: 46
Joined: Thu Nov 05, 2009 4:25 am

video file uploading

Post by bhanu »

Hi to all,
Can any body guide me please how to upload video files using php
and how to maintain it?
i can successfully uploaded image files with this code shown below

Code: Select all

 move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile) ;  
but i cant upload video files

please help me out from this


:banghead:

regards
bhanu
buckit
Forum Contributor
Posts: 169
Joined: Fri Jan 01, 2010 10:21 am

Re: video file uploading

Post by buckit »

you haven't explained what you issue is other than "i cant upload video files".

why doesn't that work? errors? whats the rest of your code?



I'm sure you have your reasons for wanting to upload and maintain video on your site... but honestly I would seriously weigh the pros and cons of using youtube to host the video and simply imbedding those videos into your site. will save you a TON on bandwidth alone.
Post Reply