What is PHP Switch Statement? According to php.net The Switch Statement is similar to a series of IF statements on the same expression. In many…
What is PHP Switch Statement? According to php.net The Switch Statement is similar to a series of IF statements on the same expression. In many…
preg_match is a wonder ful function of PHP( 4,5,6) to Perform a regular expression match. Its little bit difficult to learn but extremely useful when…
function(): A set of specific program and source code which complete a specific task is function. Function separates the complexity of a large program and…
PHP is world’s no. 1 server side scripting language, it comes with plenty of features and one of the most famous one is file uploading…
I f you a PHP programmer then you will find it very easy to track your visitors IP Address, if someone spaming on your site…
Constant: Constant refers to fixed value that does not change the value during the execution of program. Constant are defined using PHP’s define () function…
If you want to use unlimited number of characters in your form then <textarea> is going to easy your life. According to w3school The <textarea>…
This tutorial will teach you how to validate a e-mail id using regular expression to control email Spam. In this tutorial I used ternary operator…