I know im doing it wrong because i edited this from just a name search can someone help me figure out what im doing wrong? Tried searching but nothing shows up.
    <form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>"
  <table class="table table-bordered">
    <tr>
      <th>Search by date
      <input name="ftxtKeyword"  type="date" id="ftxtKeyword" value="<?=$_GET["ftxtKeyword"];?>"> Between
      <input name="btxtKeyword"  type="date" id="btxtKeyword" value="<?=$_GET["btxtKeyword"];?>">
      <input type="submit" class="btn btn-primary" value="Search">
    </tr>
  </table>
</form>
<?
if($_GET["ftxtKeyword"] != "")
    {
    $objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
    $objDB = mysql_select_db("mydatabase");
    $strSQL = "SELECT * FROM service WHERE Service_date BETWEEN ".$_GET["ftxtKeyword"]." AND ".$_GET["btxtKeyword"]."";
    $objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
    ?>
 
     
     
    