> -----Original Message-----
> From: Kyle Mathews [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, May 06, 2001 4:46 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Trim a string
> 
> 
> Hello:
> 
> I have a signup form that asks for a website address.
> I don't need them to put in the http://, but I'm thinking that 
> some will try
> anyway.
> Is there a way to check for this and remove it when the user submits the
> form?
> 
> Thanks,
> Kyle
> [EMAIL PROTECTED]
> http://www.thedip.net


str_replace()

$string = "http://www.foo.com";;

$string = str_replace("http://","",$string);

echo $string;

Will echo out:

www.foo.com

For more information:
http://www.php.net/str-replace

Jason Lotito
Webmaster Newbie Network -> http://www.NewbieNetwork.net
EIC PHP Weekly Newsletter -> http://www.newbienetwork.net/ciao.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to