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

change button color in javascript

change button color in javascriptIn the program we will show you How do change button color using javascript .In javascript we are using onmouseover it is used to record mouse move. Source code <html> <head> <script type="text/javascript"> function changeColor(color) { document.getElementById('MyButton').style.background=color; } </script> </head> <body> <p>Move...

How do search word in string using javascript

How do search word in string using javascript In program we will show How do get word from given string using java script.When you are using search keyword it is searching word in the given string if it is found then return 0 otherwise not return any value. Program <html> <head> <script type="text/javascript"> function...