didgydont Posted October 13, 2008 Share Posted October 13, 2008 hi all im trying to do if post contains http:// remove it eg if post is http://www.phpfreaks.com make post www.phpfreaks.com thank you for your time Link to comment https://forums.phpfreaks.com/topic/128173-solved-remove-from-post/ Share on other sites More sharing options...
kenrbnsn Posted October 13, 2008 Share Posted October 13, 2008 Use the str_replace() function <?php str_replace('http://','',$_POST['somevar']); ?> Ken Link to comment https://forums.phpfreaks.com/topic/128173-solved-remove-from-post/#findComment-663834 Share on other sites More sharing options...
didgydont Posted October 13, 2008 Author Share Posted October 13, 2008 thank you very much worked a treat Link to comment https://forums.phpfreaks.com/topic/128173-solved-remove-from-post/#findComment-663852 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.