Skip to content
Loading
how to set selected date in datetime picker
  • Logsheet
  • Select Date :" style="font-size:120%;text-align:center;background-color:#f9ecc7;font-weight:bold;"/>
    to Date :
    " style="font-size:120%;text-align:center;background-color:#f9ecc7;font-weight:bold;"/>
    Select User :
    if($_SERVER['REQUEST_METHOD'] == "POST" and isset($_POST['Load']))
    {
    $userid= $_POST['username'];
    $fromdate = $_POST['dtpFromDate'];
    $todate =$_POST['dtpToDate'];
    $sql = ("call sp_get_fulllog_sheet('$fromdate','$todate','$userid')");
    $result = mysqli_query($mysqli, $sql);
    ?>

    while(($row = mysqli_fetch_array($result)))
    {
    ?>
    }
    }
    else
    {
    echo 'no records Found';
    }
    ?>
    Client_nameprocess_descriptionstart_timeend_timeDurationUserNameutilization_idcall_statusPatient_name
    Developed by
    RND Software Team © 2017
       
  • Nigel Fernandes
    I think theres an issue in the html generated on run time.
     
    Can you share the HTML source after the page has run.