Forum: PHP Feb 13th, 2007 |
| Replies: 3 Views: 1,509 If you're the only one that needs access, I'd say put the file in a separate directory and use an htaccess file. |
Forum: PHP Jan 12th, 2006 |
| Replies: 3 Views: 1,443 This assumes the sentence ends with a period. I can't remember if this function will take an array of delimiters or not.
[code]
$strings = split(".",$summary);
echo $strings[0];
[/codep] |