Thread
:
How can I capitalize only the first letter in a sentence?
View Single Post
05-07-2005, 07:25 AM
mortenb
Confirmed User
Join Date: Jul 2004
Location: Denmark ICQ: 7880009
Posts: 2,203
php
put the text in a .txt file with one sentence on each line
<?php
$data = file("filename.txt");
for($i=0;$i<count($data);$i++) {
echo UCFirst($data[$i])."<br>\n";
}
?>
mortenb
View Public Profile
Find More Posts by mortenb