Linux
2 mins read

Install XAMPP on 32/64 bit Linux Distro

Today Linux has become number one choice in Open Source world whether it is Desktop experience, programming, server or Web Development Linux has no match. Its Secure , fast and comes in many flavor. In this tutorial we will focus how to install Xampp on linux 64 bit OS. Earlier day the Linux version of […]

PHP
1 min read

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> tag defines a multi-line text input control and hold unlimited number of characters.A simple example : <textarea  rows=”14″ cols=”30″ ></textarea> How to use in language like PHP? Its simple just […]

PHP
1 min read

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 to filter the values coming from the input box and avoid errors.Complete Coding is here  <?php $email=(isset($_POST[’email’]))?trim($_POST[’email’]):”; function verify($email){ if(!preg_match(‘/^[_A-z0-9-]+((.|+)[_A-z0-9-]+)*@[A-z0-9-]+(.[A-z0-9-]+)*(.[A-z]{2,4})$/’,$email)){ return false; } else { return $email; } } if(isset($_POST[‘submit’])){ […]