gerrit
Posts: 131
|
| Posted: 05/09/2005, 5:15 AM |
|
Hello,
How I do make brake in $message =
Example $message = test <br> test
_________________
| http://www.vision.to | |
 |
 |
mamboBROWN
Posts: 1713
|
| Posted: 05/09/2005, 11:51 AM |
|
How is $message being used. If it is a string data type that will be displayed as html then this is how it should be:
$message = "test <br> test";
\
if you are continuing a line then simply press the return and the line will continue until you end it with a semi-colon(;). It will look like this
$message = "test
test";
And please don't forget your ending and beginning quotation marks (this is assuming that you are using $message as a string variable).
Hopefully this will be helpful to you.
|
 |
 |
gerrit
Posts: 131
|
| Posted: 05/10/2005, 2:15 AM |
|
thanks.
_________________
| http://www.vision.to | |
 |
 |
|