Programming

PHP explode function explained

The explode function in PHP is very useful in developing any web application or website. In this article, I will explain the explode function and give you real-life example. PHP explode() explode() function splits/break a word into an array based on the separator provided. separator required A character or string which specifies from where to […]

PHP Uppercase & Lowercase

In this article, I will show you how to uppercase or lowercase a string in PHP. First of all, let’s see why is it required. Why are PHP Uppercase & Lowercase functions required? PHP uppercase or lowercase is required to achieve the following: To display data uniformly on webpage no matter how they are stored […]

Product List Layout – Bootstrap 4

Are you designing a custom e-commerce theme for yourself or your client? Then, you must consider this beautiful layout for displaying list of your products. The product layout is created using following libraries, technologies & resources: Bootstrap 4 FontAwesome Icons Google Font HTML, SCSS The primary color & font of the design can be easily […]

How to create & call global PHP functions in CodeIgniter

We occasionally need some common global functions during our development. In core PHP, we can create a file, say functions.php (don’t confuse it with wordpress functions.php). We can include this file in any other file to access its functions. But, CodeIgniter is a MVC framework and it follows Object-oriented programming. Everything is managed in it […]

this may be due to a blocked port missing dependencies – XAMPP Error

When i installed xampp on my pc. It worked great initially. But after some time, i stuck with an error “this may be due to a blocked port missing dependencies”. This error suddenly pops-up when i tried to run the apache server. It took hours for me to fix the issue but after banging my […]