Category Archives: PHP

Basic File Uploading Using PHP

Hi Guys, In this article we are going to move How to upload the file using PHP. File uploading is mainly done to website like recruting sites, online applications etc. In recrutment site, the user upload their biodata, photo are uploaded through frond end and in here it connect to database also. But now we… Read More »

Operators in PHP

Hi Guys, Today we discuss operators in php. The operators are in PHP helps to perform different functionalities in php. It is mainly used to perform operations in values and variables. An operator is one type symbol, that is used to perform certain operations on its operands. Operator is always associate with operand. Example x+y… Read More »

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 »