Demo of multipart form/file uploading with hapi.js.
npm install
npm run setup
npm run server
Then ...
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| <?php // SEE IF THE BROWSER BEING USED IS INTERNET EXPLORER | |
| function ae_detect_ie() | |
| { | |
| if (isset($_SERVER['HTTP_USER_AGENT']) && | |
| (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) | |
| return true; | |
| else | |
| return false; | |
| } | |
| ?> |