Many thanks sleipnir, I pasted the code into a page, published it, and looked at the site on the browser and it was a blank page. Thanks also vacunita, the page name is Test.htm? the code placed in the page is:
<html>
<body>
<?php
$db = mysql_connect("localhost", "root", "password");
mysql_select_db("mydb",$db);
$result = mysql_query("SELECT * FROM employees",$db);
printf("First Name: %s<br>\n", mysql_result($result,0,"first"));
?>
</body>
</html>
The localhost,root,password are shown above clear for obvious reason. Many thanks both.