Upload multiple files using HTML 5 and PHP

Posted by khumlo Freddie in HTML, PHP on 28. Sep, 2011 | 0 Comments

This application of uploading multiple files will work only on new versions of Firefox, Safari and Chrome. IE stills continues to be developer’s nightmare in this powerful feature too. Until the arrival of HTML 5, we had to upload only one file at a time but now we can upload multiple files at one go.   [...]

How to allow your website to be set as homepage

How to allow your website to be set as homepage

Posted by khumlo Freddie in browser, HTML on 22. Aug, 2011 | 0 Comments

You may have come across websites which when you opened it, asked you whether you want that page or website to be set as a default homepage for your current browser such that whenever you reopen the same browser, a new tab will be initialized and your website will be called. To set your website [...]

Difference between POST and GET methods

Posted by khumlo Freddie in AJAX, HTML, PHP on 13. Jun, 2011 | 0 Comments

POST and GET are methods used to submit form from client to server. Both accomplices the same goals but they operate differently. Difference between POST and GET methods are listed below. POST vs GET are: When submitting form using POST, the form elements are sent to the server in encrypted form while in case of [...]

Find out ASCII code of any key

Posted by khumlo Freddie in HTML, Javascript on 31. Dec, 2010 | 0 Comments

With just one line of javascript, we can find out the ascii value of any key in the keyboard with some exceptions though. We normally googled to find out what’s the ASCII of some key so as to use in your application. The source code which I will be providing below will do just that, [...]