Ok so all I want to do is be able to upload some information using an html form including some videos. (1 at a time in each upload) then strip the filename from c:\whatever\myvideo.fla to myvideo.fla and store and store all the info in my database minus the video which will be stored in a "videos" folder.
The SQL stuff isn't the hard part but when using plain old HTML FORMs and POST (I included ENCTYPE="multipart/form-data" in the form tag) the script simple times out leaving me looking at a blank screen. Is there a better way of doing this without taking the expensive commercial route?
P.S. I have no problems passing string info from html to php and uploading to the database.
2 problems are;
1. Uploading the videos successfully (2-3mb).
2. stripping the file name to just the file i.e. myvideo.fla
Any help would be greatly appreciated. I'm so stumped!!
Steve
The SQL stuff isn't the hard part but when using plain old HTML FORMs and POST (I included ENCTYPE="multipart/form-data" in the form tag) the script simple times out leaving me looking at a blank screen. Is there a better way of doing this without taking the expensive commercial route?
P.S. I have no problems passing string info from html to php and uploading to the database.
2 problems are;
1. Uploading the videos successfully (2-3mb).
2. stripping the file name to just the file i.e. myvideo.fla
Any help would be greatly appreciated. I'm so stumped!!
Steve
Comment