The Bootstrap grid layout system is simple to use, it provides style classes that can be used to create different kinds of grid layout, ranging from one to twelve columns and with support for responsive layouts (where the layout of the grid changes based on the width of the screen, allowing the same content...
If you are developing a PHP based web application using Laravel and have some requirement to create PDF documents then you have very limited choice. I was searching some php library for generating PDF document and came across Dompdf. It’s a very simple Laravel library which can be used for generating PDF with lots...
Ever since I have posted ExtJS 4 MVC CRUD tutorial, I got hundreds of request on writing the same example with PHP so I have decided to post a same article with Laravel. Those who are not familiar with Laravel should know that it’s a PHP MVC framework. Compare to Spring framework, I find...
PHP is a server side scripting language used to develop dynamic web application. One of the limitation of PHP I see as compare to java is unlike java, php doesn’t have a good server side debugging feature. All we can do for debugging in PHP us just add some echo, var_dump etc statements that...
A CAPTCHA (acronym “Completely Automated Public Turing test to tell Computers and Humans Apart”) is a type of challenge-response test used in computing to determine whether or not the user is human. It’s a program that can generate and tests that humans can pass but current computer programs cannot. For example, humans can read...
Image you have a Website which deals with news/updates on finance industry. You have admin panel where you used to post news/ image gallery on each category. Each category/post on your website has one unique id which is generated when you create any new category or post any news in that category. When you...
While developing one project, I have a requirement of getting table data in grid. The table contains many records and need to be fetched accordingly. I started googling “PHP pagination class” and “PHP pagination library” and come across hundreds of free/ open source PHP pagination library. Since I am not using any framework, I...