hey guys,does anyone here know some tutorial on how to upload video files?tutorial in Adobe is quite confusing.Thanks..
ryan_vietnow 13 Posting Pro
Recommended Answers
Jump to Postit's as simple as uploading other files.
If you know how to upload other type of files, then you know this also.
try saerching for uploading file using php/html and/or asp.net/html.good …
Jump to Post<input type="file" name="video">
php code for upload
$ss=mkdir("videos/",0777); $uploaddir="videos/"; $filetype=$_FILES[video][type]; $filename=$_FILES[video][name]; $realpath=$uploaddir.$filename; if(!empty($filetype)) { move_uploaded_file($_FILES['video']['tmp_name'],$realpath ) ; }
Jump to PostPut this into your html form to allow the user to upload more than the browser can normally handle.
<input type="hidden" name="MAX_FILE_SIZE" value="60000000" /> <input type="file" name="video">
All 11 Replies
mostafadotnet 18 Junior Poster
ryan_vietnow 13 Posting Pro
rajlaxmi sharma 0 Newbie Poster
muralibobby2015 17 Posting Pro
amit_kuetcse2k5 0 Newbie Poster
cwarn23 387 Occupation: Genius Team Colleague Featured Poster
diovanne 0 Newbie Poster
diovanne 0 Newbie Poster
diovanne 0 Newbie Poster
Bestwebdesign 0 Newbie Poster
mina gharache 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.