<head> <script src=”https://code.jquery.com/jquery-1.9.1.min.js”></script> <script type=’text/javascript’> $( document ).ready(function() { $(‘a’).filter(function() { return this.hostname && this.hostname !== location.hostname; }).attr(‘target’, ‘_blank’); $(‘a’).filter(function() […]
How to remove extra Spaces, Tabs and Line feeds in php?
<?php $string =”<b>About PHp</b> Originally created by Rasmus Lerdorf in 1994, the reference implementation of PHP (powered by the Zend Engine) is now […]