Jump to content

Ethan_Hunt

New Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by Ethan_Hunt

  1. got it:) the correct format is like that: you saved my project!! appreciate you all
  2. so aufdzhost is a date type column in oracle db. my query looks like below when I execute it in SQL Developer. here is NLS: here is how sysdate in SQL Plus looks like:
  3. that is first result with echo out: after filtering( I used many different date format but none of it has worked) so basically it this format should work: 09-MAR-23 nothing!!
  4. I've changed to $post_at_todate = date('yyyy-mm-dd'); but still no result. $post_at_todate = date('yyyy-mm-dd');
  5. Hi Mates, the problem that I have is, i want to enter in two text field date and filter the SQL query. after submit the button, i don't receive or see any error after executing! my db is oracle and my sys date format is like : 08.03.23. based on my assumption, something with my date format is not correct in my code. <?php include 'orc_php.php'; $post_at = ""; $post_at_to_date = ""; $queryCondition = ""; if(!empty($_POST["search"]["post_at"])) { $post_at = $_POST["search"]["post_at"]; list($fid,$fim,$fiy) = explode("-",$post_at); $post_at_todate = date('Y-m-d'); if(!empty($_POST["search"]["post_at_to_date"])) { $post_at_to_date = $_POST["search"]["post_at_to_date"]; list($tid,$tim,$tiy) = explode("-",$_POST["search"]["post_at_to_date"]); $post_at_todate = "$tiy-$tim-$tid"; } $queryCondition .= "and auf.aufdzhost BETWEEN '$fiy-$fim-$fid' AND '" . $post_at_todate . "'"; } $sql = "select distinct auf.aufdzhost , auf.aufnr , te.tenam , art.artnr , aup.aupmgist from auf_a_v auf , te_a_v te , artall_v art , aup_a_v aup where auf.aufid = te.aufid and aup.aufid = auf.aufid and art.artid = aup.artid and auf.aufGrpNam like 'NATCAN%' and aup.aupmgist != 0 " . $queryCondition . " ORDER BY AUFDZHOST desc"; $result = oci_parse($conn,$sql); ?> <<html> <head> <title>Filter Date</title> <script src="https://code.jquery.com/jquery-1.9.1.js"></script> <link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"> <style> .table-content{border-top:#CCCCCC 4px solid; width:50%;} .table-content th {padding:5px 20px; background: #F0F0F0;vertical-align:top;} .table-content td {padding:5px 20px; border-bottom: #F0F0F0 1px solid;vertical-align:top;} </style> </head> <body> <div class="demo-content"> <h2 class="title_with_link">Filter Date</h2> <form name="frmSearch" method="post" action=""> <p class="search_input"> <input type="text" placeholder="From Date" id="post_at" name="search[post_at]" value="<?php echo $post_at; ?>" class="input-control" /> <input type="text" placeholder="To Date" id="post_at_to_date" name="search[post_at_to_date]" style="margin-left:10px" value="<?php echo $post_at_to_date; ?>" class="input-control" /> <input type="submit" name="go" value="Search" > </p> <?php if(!empty($result)) { ?> <table class="table-content"> <thead> <tr> <th width="30%"><span>Post Title</span></th> <th width="50%"><span>Description</span></th> <th width="20%"><span>Post Date</span></th> </tr> </thead> <tbody> <?php oci_execute($result); while($row = oci_fetch_array($result)) { ?> <tr> <td><?php echo $row["AUFDZHOST"]; ?></td> <td><?php echo $row["ARTNR"]; ?></td> <td><?php echo $row["TENAM"]; ?></td> </tr> <?php } ?> <tbody> </table> <?php } ?> </form> </div> If I don't use the text field and directly enter the date in my SQL query in PHP codes, then I get the result. But in fact, I need to filter the form input text in web and not in background. thank you for your helps. Ali
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.