hello
i noticed that if names, e.g. "joe bloggs" was entered it would appear as "joe bloggs". how can i make it "Joe Bloggs". i.e. automatically 1st letter of each word into capital letters
thanks
name input
name input
[b][color=red][url=http://ilumu.com]UK Website Design Specialists - ILUMU.COM[/url][/color][/b]
You can use php's ucwords function.
$name = ucwords($name);
$name = ucwords($name);
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
-
- Posts: 4
- Joined: Mon Jul 28, 2008 11:47 am
I suggest that you change your mind on that idea. Your own username in this forum icepack starts with a lower case. Other people might like to write a name starting with lower case.
Wouldn't it make more sense to consider making the words in the subject start with capital letters if at all doing it any place?
Wouldn't it make more sense to consider making the words in the subject start with capital letters if at all doing it any place?
You should give Weird Dragons' input some consideration, but if you want to do this anyway add just below and for subject add just below The second code is located TWICE in mboard.php!
Code: Select all
$name = ucwords($name);
Code: Select all
$name=pj_input($_POST['name'],'Please enter your name!');
Code: Select all
$subject = ucwords($subject);
Code: Select all
$subject=pj_input($_POST['subject'],'Please write a subject!');
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
hi klemen
thanks for the help
i found most people on my forum type in their real names as opposed to a nickname/username (as the theme is serious) so decided to go for the change to tidy things up.
cheers!
thanks for the help
i found most people on my forum type in their real names as opposed to a nickname/username (as the theme is serious) so decided to go for the change to tidy things up.
cheers!
[b][color=red][url=http://ilumu.com]UK Website Design Specialists - ILUMU.COM[/url][/color][/b]