Category Archives: Web Development

SQL HAVING Clause

Hi Guys, This SQL article explain how to use the SQL HAVING clause with example and syntax. Mainly the SQL HAVING clause is used in combination with the GROUP BY clause to restrict the groups of returned rows to only those whose the condition is TRUE. Syntax SELECT exp1, exp2, … expn, aggregate_function (aggregate_exp) FROM… Read More »

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 »