How can I put these three lines on separate lines. At the moment the two "else" statements are on one line each but the "print" follows the last else. I would like the print to be on a separate line as well.
Or, even better the two "else" on one line and the "print" on a new line.
echo "Welcome back " . $_COOKIE["lsvs_user"] . "<br />";
echo "Your last visit was - ". $visit;
print "<a href=\"../pages/home.php\">Click here to enter</a>";
Thank you for your time.