mysql_connect("mysql153.secureserver.net","rntsoft","password");
mysql_select_db("rntsoft");
$query = "SELECT id, firstName FROM Employee";
$result = mysql_query($query);
while ($row = mysql_fetch_object($result)) {
$name = $row->firstName;
$id = $row->id;
echo "Product: $name ($id)
";
}
?>