PHP Code://users post example
$post = 'fb.com/sometext';
//here we remove what we dont want
//str_replace('THE TEXT YOU DONT WANT', 'TEXT YOU DO WANT(OR)LEAVE BLANK', $post);
$post = str_replace('fb.com/', '', $post);
//here we show new result which should display
//sometext
echo $post;
//
//
//
//



LinkBack URL
About LinkBacks
Reply With Quote





Bookmarks