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
Author: smarttips
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
php zendframework truncate a string function
The programmers can use this <h4>truncate function in php zend framework</h4> to limit the string length <?php echo $mysmartcode = $this->string()->truncate(‘ i love u’, 5); ?>