How to do Tree Pagination in PHP

A tree structure means nodes within nodes. By using MySQL and PHP you can read a database then fetch records recursively. By taking an example we can understand it better. There is a table Category with records for categories and sub-categories. There are 3 columns: Id, Name, Parent Id and records are: [php] 1, A, … Read more

Accessing MySQL Access from different host

I was working in PHP and MySQL. My database interface is PHPMyAdmin. Everything was working fine and some issues came when I was trying to access my site from other computer in LAN. Later these issues were resolved, so I thought to share them. Initially, when I tried to open The Site on another local … Read more