At 02:09 PM 12/6/2001 +1030, Daniel Falkenberg wrote:
> > Hey again all!
> >
> > $string = "attack. The password for $user_to_change should not have
> > to be changed.\n".
> > "-" x 70, "\n Hello".
> > "Thank you for using our software.\n\n";
> >
> > Now I have been informed to replace the , with a . at the second line
> > of the string near 70. This gives me a whole list of errors that I
> > don't know what they mean... Is it even possible to do what I want to
> > do above? The variable $string prints but only up to the "-" x 70,
> > then she stops. Any other ideas before I do this manually?
> >
How about this:
$linebreak = "-" x 70;
$string = "\nHELLO WORLD!\n\n".
"To $to, \n\n".
"\n". $linebreak. "\n Hello World ".
"Thank you for using our software.\n\n";
Not pretty, not elegant, but get's the job done.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]