If you want to learn OOP in PHP then it is a good step towards making yourself an expert PHP developer. In this post, I will be focusing on basic concepts of OOP in PHP with a little bit of code. What is OOP ? Object oriented programming is a useful programming technique. In object oriented programming, the code is…
Author: Zohaib Shah
AngularJS ng-repeat
AngularJS ng-repeat is a useful concept in any of the AngularJS based app. AngularJS ng-repeat directive is used to iterate through a JSON and build HTML accordingly. Filters in AngularJS can be useful if we want to filter the rendered HTML as per our needs. The exciting factor while working with AngularJS HTML rendering is that it is seamless and…
PHP mysqli class to connect with MySQL database
PHP mysqli class is one of the multiple ways to connect with MySQL database using PHP. In this post we will learn about PHP mysqli class, it’s useful methods and properties. Following logical steps will show you how to use mysqli class to access MySQL database in PHP: Connecting with MySQL database using PHP Creating a Table in MySQL Database…
Important string functions in PHP
Some functions are very common and we use them frequently in our projects. No matter which CMS or Framework we are using but as long as they are based on PHP we can utilize these PHP functions to perform some basic tasks. implode() in PHP The implode() function converts an array into an string and separate each element with the…