Prueba así:
Código PHP:
<?php require_once('Connections/seleccion.php');
mysql_select_db($database_seleccion, $seleccion) or die(mysql_error());
$hoy=date("Y-m-j h:i:s");
$sql=mysql_query("SELECT * FROM registro WHERE DATEDIFF('$hoy',fecha) <=1",$seleccion) or die( mysql_error() );
$num = mysql_num_rows( $sql );
if ($num > 0 ) {while ($row=mysql_fetch_array($sql)) {?>
<table><tr>
<td width="74">Nombre:</td>
<td width="198"><?php echo $row['nombre'];?></td>
</tr>
<tr><td>Fecha:</td><td><?php echo $row['fecha'];?></td></tr>
<tr><td>Mail:</td><td><?php echo $row['mail'];?></td></tr>
<tr>
<td valign="top" bgcolor="#CCFFCC">Comentario:</td>
<td bgcolor="#CCFFCC"><?php echo $row['comentarios'];?></td>
</tr>
<tr>
<td colspan="2" valign="top"><hr size="3"></td>
</tr>
</table>
<?php }}
else {echo'no existen nuevos registros';}
?>
Saludos.