I'm trying to implement a standardized footer of sorts on the bottom of all my posts. Here is the code I'm using and a picture of what shows up. No mateer what I try WordPress seems to defy creating a line break. I also get the same problem when I include PHP code in a post - I'm using a plugin that allows me to execute inline PHP in a post. I cannot create a line break between PHP. Is there a PHP specific line break? I've used
and \n with no success.
<?php
$lcurl = 'http://tubenow.net/link-checker/?url=' . urlencode($_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']);
$tnlc = '<a href="' . $lcurl . '" target="_blank">>>Click to check if files are alive on download server<<</a>';
echo $tnlc;
?>
<?php
echo "\n";
?>
<?php
if(function_exists('the_ratings')) { the_ratings(); }
?>
[IMG]http://i37.tinypic.com/72vpmb.gif[/IMG]
Please help, this is frustrating me to no end!