<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

// some code

mysql_close($con);
?>

chi mi sa spiegare la parte che ho messo in bold??
Grazie
STefano