Hello,
Somehow this is not working. I tried pretty much everything.
I am also very new to PHP, but i made a nice CMS. Now I am making a website with some random flash-videos every time you refresh. This is what i got so far:
<html>
<head>
<title>Sydcul.com</title>
</head>
<body>
<h1>Sydcul.com</h1>
<h2>Warning: flashing images!</h2>
<p>It would be fun to turn on your sound.</p>
<?php
echo('This is visible, all stuff below is not. So the closing tags are not visible too.');
echo('<embed src="flash/' . rand(1, 5) . '.swf" type="application/x-shockwave-flash" width="320" height="240></embed>');
?>
</body>
</html>
I am not really sure how to implement HTML in PHP, so it is something really small i guess.