Does anymone see if there is something wrong with this query
it doesnt give any count result
$connection = mssql_connect($db_hostname, $db_username, $db_password);
$db = mssql_select_db($db_name, $connection);
$sql = "SELECT COUNT(intCv) AS cntCV FROM tbCV";
$result = mssql_query($sql,$connection);
$row = mssql_fetch_array($result);
echo '<P>Totaal aantal inschrijvingen: '.$row['COUNT(cntCV)'].'</P>';