if you want to know the colors that are used here
write some php in the php tags to use them, other than that
i don't know that there are standard syntax colors
<?
$conn = mysql_connect("localhost", "user", "pass");
$db = mysql_select_db("database");
$query = "select * from table;";
$result = mysql_query($query) or die(mysql_error());
while ($row = mysql_fetch_array($result))
{
echo "This is what is in this field " . $row['fieldname'];
}
?>