Hi, i need help regarding removing the free space at the end of url. let the url be "http://rapidshare.com/files/25662065/Test.rar " note the space at the end of rar i need to convert it to "http://rapidshare.com/files/25662065/AdsenseGold.rar" i have to trim the free space whether it be single space or multiple space i heard we can use rtrim but how to use it thanks a lot
// If the user is putting in a URL - convert it to a variable. $url = $_POST['url']; // then trim it trim($url);