Advanced Java and Web Technologies for JNTUK
Blog providing beginner tutorials on different web technologies like HTML, CSS, Javascript, PHP, MYSQL, XML, Java Beans, Servlets, JSP and AJAX
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

Control Statements in PHP

Suryateja Pericherla Categories: PHP. No Comments on Control Statements in PHP

Control statements in PHP are used to control the flow of execution in a script. There are three categories of control statements in PHP: selection statements, iteration / loop statements and jump statements.   Selection statements   The selection statements in PHP allows the PHP processor to select a set of statements based on the […]

Read the rest of this entry »

Operators in PHP

Suryateja Pericherla Categories: PHP. No Comments on Operators in PHP

Introduction   Operators are used in expressions to perform operations on operands. There are several operators supported by PHP which are categorized into following categories: Arithmetic operators Assignment operators Comparison operators Increment/Decrement operators Logical operators String operators Array operators   Arithmetic Operators   PHP arithmetic operators are used along with numbers to perform operations like […]

Read the rest of this entry »