In HTML Forms, the enctype attribute used to handle encoding of form submitted data. When we use form GET or POST action, we have to encode the form data to get form submitted data. The HTML forms provide three methods for encoding. The default is application/x-www-form-urlencoded, which is more or less the same as a […]
Tutorials
Control Statements in PHP with Examples
The if, if…else and if…elseif…else constructs are important features of any programming language. The conditional statements provides us different actions for the different conditions. When we write code, we perform different actions for different decisions. Like any other language, PHP is built out of a series of control statements. The control statement can be an […]