Php öğrenme.

0 Cevap php
<html>

<!--HTML-->
<head><title>a quick test</title></head>
<body>a quick test</body>

<p>javascript</p>

<!--javascript-->
<p><script>
document.write("hello world")
</script></p>

<p>php</p>

<!--php-->
<?php
Echo "hello world";
?>

</html>

Merhaba dünya javascript için ancak php, ne verir değil mi çalışıyor? Herhangi bir öneri veya bariz hataları?

teşekkürler

0 Cevap