İşte benim kod:
<html>
<Head>
<?php
$name = "Sergio";
?>
</Head>
<body>
<h1>It works!</h1>
<?php
echo "So someone tells me your name is " . $name . ".";
echo "Welcome to the site, " . $name . "\n";
echo "THEN WHO WAS NEW LINE?";
?>
</body>
</html>
Her şey hiçbir satırsonu ile tek bir satır çıktılar. Herhangi bir yardım?