1.Mercedes :- Originated from the name of daughter of the Mercedes car founder. 2.Nokia :- Originated from the Name of city in “Finland”. 3.Pepsi :- Originated from the name of “enzyme” pepsin. 4.Honda :- From the name of the founder ” Soichiro Honda”. 5.Sony :-…
Johny Mone Johny by Dulquar Salman in ABCD malayalam movie
ABCD is a malayalam movie directed by “Martin Prakkat” .The here of ABCD film is Dulquar Salman son of famous malayalam actor mammooty. He sung a song in this movie and the song is so popular among the youngsters. The song titled as “Johny Mone Johny”. Johny Mone Johny by Dulquar Salman
jQuery url Validation
When lost focus from the input box the script will check the URL against its Syntax $(‘input’).keydown(function() { if (ischeckUrl($(this))==1){ alert(“enter a valid url…”); } }); //function to check URL function isCheckUrl(checkurl){ if(/^(http|https|ftp)://[a-z0-9]+([-.]{1}[a-z0-9]+)*.[a-z]{2,5}(:[0-9]{1,5})?(/.*)?$/i.test(url)) { return 1; } else { return -1; } }
File download zend framework php script
File download zend framework php script <?php $imagePath = getcwd().’/public/images/smartips_log.png’; header(‘Content-Type: image/jpeg’); header(‘Content-Disposition: attachment; filename=smartips_log.png’); readfile($imagePath); ?>
How to see apache log error in Ubuntu
Type the following command in terminal to See apache log error in Ubuntu smarttips@smarttips-System-Product-Name:~$ tail -f /var/log/apache2/error.log