السلام عليكم

ارجو المساعدة بحيث اريد عرض البيانات المدخلة لهذا اليوم فقط

عندي قاعدة بيانات تشمل
name - lastname - email - date

اريد عند عرض البيانات يظهر فقط بيانات اليوم فقط بحيث لا يظهر جميع البيانات

كود عرض البيانات
كود:
<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1256"> <title>
Add Employee</title>
<style type="text/css"/>
body {
font-family : tahoma;
}
</style>
</head>
<body>
<?php
include("config.php");
$tbl_name="test_mysql"; // Table name
$sql="SELECT * FROM $tbl_name";
$result=mysql_query($sql);
?>
<div align="center">
<div align="center">
     <table border="0" cellpadding="0" cellspacing="0" width="27%" height="20" id="table1">
         <tr>
             <div align="center">
<div align="center">
     <table width="393" border="0" cellspacing="1" cellpadding="0">
<tr>
<td>
<div align="center">
     <table width="393" border="0" cellspacing="1" cellpadding="0">
<tr>
<td>
<div align="center">
     <table width="393" border="0" cellspacing="1" cellpadding="0" height="107">
<tr>
<td>
<div align="center">
<table border="1" cellspacing="0" cellpadding="5" style="border-style: solid; border-width: 1px" bgcolor="#FFFFFF" width="468">
<tr>
<td align="center" width="122"  >
<font color="#000000"><strong>Name</strong></font></td>
<td align="center" width="111"    >
<font color="#000000"><strong>lastname</strong></font></td>
<td align="center" width="125"  >
<font color="#000000"><strong>Email</strong></font></td>
<td align="center" width="125"  >
<b>date</b></td>
</tr>
<?php
while($rows=mysql_fetch_array($result)){
?>
<tr>
<td width="122" align="center"  bordercolorlight="#000000" ><b><?php echo $rows['name']; ?></b></td>
<td width="111" align="center"  bordercolorlight="#000000" ><b><?php echo $rows['lastname']; ?></b></td>
<td width="125" align="center"  bordercolorlight="#000000" ><b><?php echo $rows['email']; ?></b></td>
<td width="125" align="center"  bordercolorlight="#000000" ><b><?php echo $rows['date']; ?></b></td>
</tr>
<?php
}
?>
</table>
</td>
</tr>
</table>
</div>
<?php
mysql_close();
?>
</body>
</html>