PHP Insert Multiple Checkbox Value in Database Using PHP – Info PHP Jul 24, 2018 IntroductionThis article explains how to store multiple checkbox values in one column in a database in PHP.ExampleIn this example, we implement…
PHP How to Create Blog Website Using WordPress: Part 1 – Info PHP Jul 24, 2018 Introduction Today I'll show to you how to create a blog web site using Wordpress. Part 1 Install Wordpress. Convert HTML theme to Wordpress.…
PHP File Handling in PHP: Scene 1 – Info PHP Jul 24, 2018 Like other languages, PHP also has file handling as an important part of web applications that allows us to manipulate files using several functions…
PHP Add Related Posts in Each Posts in WordPress – Info PHP Jul 24, 2018 Introduction This article explains how to add related posts to each post in Wordpress depending on the tags given. Even though there are many…
PHP A Simplified Approach to MVC on PHP – Info PHP Jul 24, 2018 MVC is an approach or method to manage a web application or software development process in three layers that have their own functionality, so that…
PHP PHP Configuration Environment – Info PHP Jul 24, 2018 As we know, when we install PHP in our local machine using wamp or xampp like a local server provider then sometimes we need to configure our PHP work…
PHP Various Methods For Outputting Data on the Browser in PHP – Info PHP Jul 24, 2018 PHP provides the following methods for printing data in the browser: print() echo() printf() sprintf() print(): this statement simply outputs to…
PHP PHP Rest Service – Info PHP Jul 24, 2018 This article explains how to create a simple PHP REST service. This simple PHP service has 2 functions. We are going to call these 2 methods using…
PHP Functions in PHP – Info PHP Jul 23, 2018 This article shows PHP functions that include the following: Invoking function Send parameter to function Type hinting Return multiple values…
PHP Demonstrate Arrays in PHP – Info PHP Jul 23, 2018 This article shows arrays in PHP, including: Create arrays. Sort arrays. Traverse array. Merge, splice, slice and dissect arrays. Output and test for…