| Posted by BLob on 08/28/06 13:13 
> how to  upload the video file??
 Like any other file (see the upload section of the php manual if needed).
 
 move_uploaded_file( )
 is_uploaded_file( )
 
 The only thing is that video files are bigger than many other files. You
 need to check / modify the upload_max_filesize and post_max_size in your
 php.ini (or in a .htaccess for a "per folder" approach) :
 
 For example :
 php_value upload_max_filesize "15M"
 php_value post_max_size "15M"
 
 > the upload completes..but i didnt see  no video in my server folder??
 
 Ther server uploads the files in its temp folder. Then PHP has to move it to
 the appropriate folder (move_uploaded_file).
 
 
 Regards,
 
 BLob
  Navigation: [Reply to this message] |