Easy Code Share > PHP

Loop Multidimensional Array in PHP by 3 Recursive Demos

Loop Multidimensional Array in PHP by 3 Recursive Demos

You can walk across one-dimensional array simply, but may laboriously loop through multidimensional array in PHP using recursive methods. Truly, the multidimensional features in data need more efforts for traversal of array. Obviously, recursive methods involve many types of applications such as traversing files in a directory, Towers of Hanoi, types of Tree Traversal and … Read more

Easy Code Share > PHP

PHP Namespace Example Include Class, Function

PHP Namespace Example Include Class, Function

Namespace in programming implements an abstract concept. The re-usable PHP class, function, or constant of libraries and extensions are grouped to prevent from name collisions. In addition, Namespace aliasing increase readability of codes. The article uses PHP namespace example codes to explain the basics and its variation. All codes here are not complicated, so you … Read more

Easy Code Share > PHP

5 Tips for PHP Image Effect, Watermark, Resize

5 Tips for PHP Image Effect, Watermark, Resize

Apart from softwares like Photoshop, PHP image functions can resize, add an effect to, or put a watermark on an image. Resizing will reduce the storage of mass uploaded pictures. Image filter can append a specific effect to an image. The watermark on an image prevent creative pictures or photographs from misappropriation. All codes here … Read more

Easy Code Share > PHP

Multiple File Upload in PHP, HTML, jQuery by 6 Ways

6 Methods for Multiple File Upload in PHP, HTML, AJAX, jQuery

For the topic of Multiple File Upload, there are various approaches including HTML, jQuery AJAX, and PHP. This ultimate complete guide helps you understand how to choose a proper method among them. For example, only PHP cURL method is available for the case of file transfer between hosts. All codes here are not complicated, so … Read more

Easy Code Share > PHP

6 Methods for File Upload in PHP, HTML, AJAX, jQuery

6 Methods for File Upload in PHP, HTML, AJAX, jQuery

File Upload allow various approaches, including HTML, jQuery AJAX, and PHP. This ultimate complete guide helps you understand how to choose a proper method among them. For the case of file transfer between hosts, only PHP cURL is available. Here only single file upload is written. In next article, we will talking about multiple file … Read more