05-07-2005, 07:36 AM
|
|
|
Too lazy to set a custom title
Join Date: Oct 2001
Location: Spartaaaaaaaaa
Posts: 14,136
|
Quote:
|
Originally Posted by mortenb
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";
}
?>
|
It works,
Thanks again
|
|
|