i learned php out of a book and there it taught me to place a php tag inside a html page
like:
Code:
<html>
<body>
<?php 
echo "something";
echo "another something";
?>
</body>
</html>
my question is- what do i need to do to make it a .php insted of .html?
leave it like this ? or change any thing?

Roy