Thanks, I was more or less talking about when you are coding in php and it shows in the view source it shows up on one line, I figure the answer out, use \n at the end of the one you want to be on its own line in the view source
like all my links that are being contraled through php would be on one line where now its not
also I learned that you can not use \r or \n with the ' ' it only works with " "
say if you did:
$test = 'test\rtest'; this would not work and this would show it all on one line and show \r with it also
$test = "test\rtest1"; this would work and show test on one line and test1 on the next line
Hope this helps others.
Sincerely,
Christopher