In any web application, pagination is a common feature being used with a table to handle a huge amount of data. This feature can help reduce the data loaded into the table by splitting it into multiples pages. Each page contains a set of data based on the number $per_page given. Building a pagination feature… Continue reading A simple way of displaying dynamic pagination in Vue.js with Laravel
Tag: PHP
Enable connection to MSSQL from PHP in Centos 7 with ODBC
This is a one time setup that most of the software developers have less opportunity to get the exposure. Especially who are just continue maintaining the legacy application. Everything is up and ready. The Problem When I started maintaining this one legacy system, I was working on it in my own Windows laptop and everything… Continue reading Enable connection to MSSQL from PHP in Centos 7 with ODBC
Installing PHP 5.1.6 in Windows 10
In my previous post How do I setup multiple PHP version in my local machine for development?, I mentioned that I needed multiple version of PHP is because I'll be working on the legacy system. But there's a limitation on that method, I can't install the older PHP 5.1.6 because of these reasons: No PHP… Continue reading Installing PHP 5.1.6 in Windows 10
How do I setup multiple PHP version in my local machine for development?
Leveraging Laragon's features to effortlessly switch PHP & Apache version in your PC (Windows OS) for software development. Why do I need that? The main reason is because I've to work on a legacy system which is running on previous version of PHP 5.3. But I still need the latest version of PHP 7.0 in… Continue reading How do I setup multiple PHP version in my local machine for development?