[PHP] Capitialisation

2002-09-10 Thread Liam MacKenzie
G'day all... $variable = joe blow; How can I automatically make $variable = Joe Blow; The value's obviously dynamic, so I need to capitalise each letter of each word in the var. Any ideas? For those of you who read my previous post, you may have worked out what I'm doing ;-) Cheers, Liam

Re: [PHP] Capitialisation

2002-09-10 Thread Chris Shiflett
ucwords() Liam MacKenzie wrote: $variable = joe blow; How can I automatically make $variable = Joe Blow; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Capitialisation

2002-09-10 Thread Liam MacKenzie
oh cool, didn't know that existed! thanks! - Original Message - From: Chris Shiflett [EMAIL PROTECTED] To: Liam MacKenzie [EMAIL PROTECTED] Cc: php [EMAIL PROTECTED] Sent: Wednesday, September 11, 2002 11:53 AM Subject: Re: [PHP] Capitialisation ucwords() Liam MacKenzie wrote