> November 2013 ~ Online tutorial

75% discount Hosting plan sale in Hostgator

75% discount Hosting plan sale in HostgatorHostGator is one of the world's top 10 largest web hosting companies and offers the Black friday offer today. Offer In Hostgator Hostgator is offering 1 hour flash sale on Black friday, and you can grab hosting for as low as $1.24/month. Discount: Various discount from Black friday to Cyber monday. Start date:...

PHP interview Question with answer

PHP interview Question with answer1)<?php $varA=one; $varB=&$varA; $varA=two; print $varB; ?> Output: 2 It is result is Two because $varB holds the reference of $varA value an dboth $varA and $varB poin the same value. 2)<?php $num1=6; $num2=5; $val=(num1>$num2)?$num1:$num2; echo "Greatest of no".$val;num2; ?> Output: 6 It is...

How do Upload File using PHP

How do Upload File using PHPIn PHP we are using two file which used upload file in the server.First one Html file and another one is PHP file . In the Html file we are going get file content and PHP file we are process it and Upload into Particular file path. Coding In the coding section we are show First html file.In the html file we are going to...