keyboard_arrow_right
PHP Tutorial

PHP Tips for your Website

PHP Tips for your Website

Upload an image using Java and PHP Whilst working on a recent project I needed a way of transferring images (screenshots to be specific) from the client machine to a web server hosted in the cloud. My choice of platform was Java on the client machine and then PHP on the server side to recieve […]

PHP Tutorial

Language Detection and Internationalization

Language Detection and Internationalization

Language Detection and Internationalization In this article, we’ll show you how to use language files and deliver your site in alternate languages. In your application, any text that you want to deliver in multiple languages needs to be wrapped with a gettext marker. In PHP, it’s a special function that uses the underscore character as […]

PHP Tutorial

PHP Read and Write to File Tutorial

Reading and writing on files Many times the there is the needing to save the data. There are two ways to do it: – Saving the data in a file (.txt, .dat, ecc…) – Saving the data in a database (Access, Mysql, ecc…) Now we analyze the first case, saving the data in a file. […]