Originally posted by PyroX
is this linux or windows?
Neither, but, of course '\n' would signify a standard UNIX newline, and such is the case.
I did, which is what occasioned this post. The use of the newline character in 'implode' truncates the string....
for ($n=1; $n<=$MaxDays; $n++) {
echo "Day #$n: $QuoteDay[$n]<br><br>\n";
$QuoteFile="$QuoteFile" . "---" . "$QuoteDay[$n]";
}
$GetQuotes=explode("---", $QuoteFile);
$AllQuotes=implode("\n", $GetQuotes);
$AllQuotes is now equal to the first quote of the array only.
Thanks for the suggestion, but methinks I'm ahead of you on that one, so far...any other ideas?
dalecosp