| Here is the php function to remove all character which are not alphabets or numbers to remove the white space just pass the param $removeSpace as 1 function removeNonAlphaNumero( $str , $removeSpace = 0 ){ $return_string = ""; if( trim($str) != "" ){ if($removeSpace ) $return_string = preg_replace("/[^a-zA-Z0-9]/", "", $str); else $return_string = preg_replace("/[^a-zA-Z0-9\s]/", "", $str); } return $return_string; } | |
| Tweet | |
Steps in adding Link to this page to your blogger posts Links to your page can improve your page rank. So it is a good option to add HTML code for linking to your web page. So that reader can copy and paste it on their web page. if another website links to your web page, this is considered an external link to your website. External links to your website are the most important source of ranking power and in SEO terminology it is considered as third party ranking vote for your page.

Comments
Post a Comment