Page 1 of 1

Line break

Posted: Fri Feb 26, 2010 8:19 am
by Jay87
I have tried the following code to get a line break in a table but doesn't work....

Code: Select all

<?echo $PriorityCount . "\n"; ?><?echo" PRIORITY"?></th>
where am i going wrong?

Re: Line break

Posted: Fri Feb 26, 2010 8:31 am
by Grizzzzzzzzzz
"\n"

is a line break within source view perspective.

try

"<br/>"

instead

Re: Line break

Posted: Fri Feb 26, 2010 8:46 am
by Jay87
worked =]