This tutorial demonstrate how to upload files in blob type using mysql and php in simple steps. Blob type used for storing large amount of binary data therefore we can store file in blob type.
Step 1. Create simple form having input type file and submit elements.
<form method="post" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="2000000">
<input name="userfile" type="file" [...]

Sun, Sep 19, 2010
2 Comments