Like Us Like Us Facebook Subscribe Subscribe us YouTube Whatsapp Share us Whatsapp Query Send your queries

PHP

PHP Switch Statement Tutorial with Practical Example

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…


Learn PHP Preg_match with working Example

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…


Lets enjoy power of PHP Function

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 File Uploading easy to learn tutorial with complete script

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…


How To find out Visitors IP ADDRESS using PHP

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…


PHP Constant tutorial with practicle example

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…


HTML 5 TEXTAREA TUTORIAL WITH WORKING EXAMPLE

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>…


Validate an E-Mail Address with PHP, complete script

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…