Category Archives: Web Development

Decision Making Statement – PHP

Good morning to all, The decision making statments helps in php to take some decisions in php script. It allows you to make decisions based upon the result of a conditions. Decision making statments allows you to control excecution, certain part of the php code. PHP support following conditional statment: if statments if…else statments if..elseif..… Read More »

Download and Install XAMPP

Today we cover What is XAMPP, Why use XAMPP, How to Download and Install XAMPP, Basic Web server configuration What is XAMPP? XAMP is a open source free cross platform web server. It’s maintained and compiled by apache. The XAMPP stands: X – [cross platform operating systems] meaning it can run on any OS Mac… Read More »

Removing last comma in a string – PHP

Hi Guys, Here I am going to share how to remove the last comma in a string by using php function. The rtrim() function will helps you to remove whitespaces or other predefined character from the right side of a string. Syntax rtrim(string,charlist) Parameter Description charlist Optional. Specifies which characters to remove from the string.… Read More »

JavaScript Object Notation (JSON) – Introduction

Good Morning to all, Today we discuss JSON related topic like introduction, advantage, syntax etc. The light-weight text-data interchange format is a JavaScript Object Notation or short form is JSON. It is used to store the information in an organized manner. It helps to transmit data between web application and server. It is designed for… Read More »