PHP Code:
echo ""<a href="http://minipress.me/login">Login</a> -";
huhwat?
You are echoing incorrectly.
PHP Code:
echo "<a href=\"http://minipress.me/login\">Login</a> -";
You first have a two double quotes in a row... PHP assumes you're starting and stopping a string with nothing inside, then you're for some reason throwing a < after it, which PHP just doesn't understand at all. So we drop a double quote in the beginning.
You then have another double quote, which again PHP just knows to close the string, does, and then you have more characters, and PHP just doesn't know what to do with. So we escape the second and third quotes.
Repeat this process for all your strings. Remember that if the string is encapsulated by double quotes, you have to escape all double quotes within. If you're using single quotes, escape single quotes.
You may want to do some research on quoting/echoing.