Traverse a directory in php

Sometimes, we need to traverse a directory. Here is the code to traverse a directory/folder. Exclude current and parent directory The above code display all the files and sub-directories in a current directory, including your current directory (“.”) and parent directory (“..”). To exclude these directories you can check the file name. Exclude all subdirectories … Read more

Categories PHP

PHP Template Engine

PHP Template Engine

There are so many PHP Frameworks and PHP Template Engine available to build simple to complex business applications. But, Building a web application in core PHP is the best thing that every developer loves to do.

Read more

Categories PHP

PHP Pagination

Pagination means to show the information into multiple pages instead of one and when u say PHP pagination, it means that you want to show the records in multiple pages instead of showing all records in one page.

Read more