显示显示结果的数量

我们正在使用下面的代码来根据选定的From&To过滤行。

我们可以过滤成功并显示结果。

PHP

/* to show selected date */

if (isset($_POST['post_at']) && $_POST['post_at'] != '')
    {
    $orderFromDate = $_POST['post_at'] . "  00:00:00 ";
    }
    else
    {
    $orderFromDate = '';
    }

if (isset($_POST['post_at_to_date']) && $_POST['post_at_to_date'] != '')
    {
    $orderToDate = $_POST['post_at_to_date'] . "    23:59:59  ";
    }
    else
    {
    $orderToDate = '';
    }

/* to show selected date end*/

function getDesignerCollection()
{
    /* date search */
    if (isset($_POST['post_at']) && $_POST['post_at'] != '')
        {
        $orderFromDate = $_POST['post_at'] . " 00:00:00 ";

        }
        else
        {
        $orderFromDate = '';
        }

    if (isset($_POST['post_at_to_date']) && $_POST['post_at_to_date'] != '')
        {
        $orderToDate = $_POST['post_at_to_date'] . "    23:59:59  ";

        }
        else
        {
        $orderToDate = '';
        }
   /* date search end*/

    $accountType = $rows['type'];
    if ($accountType == "admin")
        {

        if ($orderFromDate != '') $order->addFieldToFilter('created_at', array(
            'gteq' => $orderFromDate
        ));
        if ($orderToDate != '') $order->addFieldToFilter('created_at', array(
            'lteq' => $orderToDate
        ));
        }

形成

<form name="frmSearch" method="post" action="">
    <input type="text" placeholder="From Date" id="post_at" 

    value="<?php

if ($orderFromDate != '')
    {
    $newPostStartDate = date('Y-m-d', strtotime($_POST['post_at']));
    echo $newPostStartDate;
    } ?>" name="post_at"  />  

<input type="text" placeholder="To Date" id="post_at_to_date" 


value="<?php

if ($orderToDate != '')
    {
    $newPostEndDate = date('Y-m-d', strtotime($_POST['post_at_to_date']));
    echo $newPostEndDate;
    } ?>"name="post_at_to_date"  />

<input type="submit" name="search" value="search" id="searchButton">

    <input type="button" value="Reset" id="clear-dates">
    </form>

jQuery的

jQuery.datepicker.setDefaults({
    showOn: "button",
    buttonImage: "assets/img/datepicker.png",
    buttonText: "Date Picker",
    buttonImageOnly: true,
    dateFormat: 'yy-mm-dd'
});
$(function() {
    $("#post_at").datepicker();
    $("#post_at_to_date").datepicker();
});

在这里输入图像描述

现在我们要显示选择了多少行。 如果结果如上图所示,我们想要显示“rows:1”。 我很新的PHP&我尝试下面的代码,但它没有显示任何东西:

$link = mysqli_connect("localhost", "my_user", "my_password", "world");
/* check connection */
if (mysqli_connect_errno()) {
    printf("Connect failed: %sn", mysqli_connect_error());
    exit();
}

if ($result = mysqli_query($link, "SELECT entity_id , created_at  FROM sales_flat_order ORDER BY Name")) {

    /* determine number of rows result set */
    $row_cnt = mysqli_num_rows($result);

    printf("Result set has %d rows.n", $row_cnt);

    /* close result set */
    mysqli_free_result($result);
}

编辑

现在我们要显示有多少行显示的计数。 所以我们在代码下面尝试。 其显示如下图。 其显示“行= 3” 。 因为它考虑了“sales_flat_order”表中的“entity_id”列。 但我想要“行:9”,因为你可以在图像中看到9行。

在这里输入图像描述

在这里输入图像描述

require_once '../../app/Mage.php';
Mage::app();

// specify the date picker date-format
$format = 'Y-m-d';


// if posted data are not empty
if(!empty($_POST['post_at']) && !empty($_POST['post_at_to_date']))
{

       if (!empty($_POST['post_at'])) {
           $dateFrom = DateTime::createFromFormat($format, $_POST['post_at']);
       }

       if (!empty($_POST['post_at_to_date'])) {
           $dateTo = DateTime::createFromFormat($format, $_POST['post_at_to_date']);
       }

        // Get the resource model
        $resource = Mage::getSingleton('core/resource');

       // Retrieve the read connection
          $read = $resource->getConnection('core_read');

      // MySQL query
        $query =  'SELECT entity_id, created_at, dproduct_id FROM sales_flat_order WHERE created_at BETWEEN :fromdate AND :todate ;';

// Bind MySQL parameters
$binds = array(
'fromdate' => $dateFrom->format('Y-m-d H:i:s'),
'todate' => $dateTo->format('Y-m-d H:i:s')
);
// Execute the query and store the results in $results
$results = $read->fetchAll($query,$binds);
echo "rows : ".count($results);
echo "<br>";
print_r($results);
}


else {
echo "error you have not specified any dates";
}

完整的代码:http://pastebin.com/hMUEusvb


你可以使用js来统计行数。 在代码末尾添加以下代码。 将selector1替换为仅用于行的类名称。 在浏览器中检查你的页面,并找到一个只存在于行中的类,并且一次只使用一次。 然后用你想要显示行数的类或id替换selector2。

<script>    
$(document).ready(function () {
    var count = 0;
    //use class unique in each row.
    $("selector1").each(function () {
         count++;
    });
    //use class or id where you want to display count
    $("selector2").prepend("Number of rows "+count);
});

如果你想通过PHP来处理它。 请将代码粘贴到呈现搜索结果的位置。 您的当前代码无法工作,因为您的代码将回复发送回文件http://pastebin.com/QKMj0k2p的第293行上您可以在浏览器的网络选项卡中找到并查看搜索提交它发送请求的位置以及来自那里。 如果你可以找到它发送回应的地方,很容易知道哪些代码正在渲染行。 这将是更充分的帮助解决您的问题。


您可以从您的mysqli查询itsel中计数选定的ID。在您的mysqli查询中尝试此操作

   if ($result = mysqli_query($link, "SELECT count(entity_id) as Total_count,entity_id , created_at  FROM sales_flat_order ORDER BY Name")) {
    // Your process
}

我认为你有一个错误不存在于你的问题中。 如果你只想解决这个问题。 你可以使用JavaScript。 你只需要知道确切的选择器。

$(document).ready( function (){
   //your selector would direct li or td if there is no other li td    then it works other wise you have select parent then li or td like below comment
   //$(".class li").length

   var count = $("li").length;
   $("yourCounter").html(count);
} );
链接地址: http://www.djcxy.com/p/37601.html

上一篇: Show the count of Displayed results

下一篇: java IOException :Failed to create local dir in /tmp/blockmgr*