-
Notifications
You must be signed in to change notification settings - Fork 0
SWFUpload
Category:AJAX Category:Form Category:FLASH
[b]Here is how to implement SWFUpload with CI 1.5x.[/b]
In your view file, include the SWFUpload javascript file:
[code] </script> [/code]
In your controller, pass "Filedata" as the name value for the do_upload function:
[code] $this->upload->do_upload('Filedata') [/code]
In your mimes.php file, add 'application/octet-stream' for all allowed image formats
[code] 'gif' => array('image/gif', 'application/octet-stream'), 'jpeg' => array('image/jpeg', 'image/pjpeg', 'application/octet-stream'), 'jpg' => array('image/jpeg', 'image/pjpeg', 'application/octet-stream'), 'jpe' => array('image/jpeg', 'image/pjpeg', 'application/octet-stream'), 'png' => array('image/png', 'image/x-png', 'application/octet-stream'), [/code]
- Slith The Seventh Letter/Iron Eye