Hi everyone, this is my first thread in phpbuilder
and like u are guessing i have a doubt :p
i have the following statement:
$url = "http://someurl.com";
$replace = strtolower(str_replace("http://","",$url));
echo $replace;
$url will be sent from a form...
well, i would like to clean up this url like:
Your website:
[text field]http://mywebsite.com[/text field]
ok, the str_replace function will work...
but if someone say
[text field]http//mywebsite.com[/text field]
it won't work..
so how can i handle with this?