[PHP] Trim a string

2001-05-06 Thread Kyle Mathews

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



-- 
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]




[PHP] Image Upload

2001-05-06 Thread Kyle Mathews

Hello:

I'm looking for some code that will upload images to my server from a form
submission.
I'd also like it to check for a max file size of the images.

Any help would be appreciated.

Thanks,
Kyle
[EMAIL PROTECTED]
http://www.thedip.net




-- 
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]




Re: [PHP] Trim a string

2001-05-06 Thread Kyle Mathews

Thanks, that worked great.

- Kyle



Jack Dempsey [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 if you're string is a variabe $address, then
 eregi(http://,$address) will tell you if they've put in the http part,
and
 $address = substr($address,7);
 will slice off and store the text after the http://

 you'll find lots of different ways to do this...whatever suits you, go for
 it...

 -jack

 -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



 --
 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]



 --
 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]




-- 
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]