dongxin9759 2014-07-18 18:31
浏览 40
已采纳

多维阵列打印

I'm trying very hard to display this multi dimentional array for past 3 to 4 days to no avail.
All I need to do is to display like below:

carName:

carImage:
days:
amount:  // this is where I'm facing the problem to display all the days and amount related to specific car..One car will have few days and amount quoted for each day.

//pls look at my code and help... Thanks

<?php
    mysql_select_db($database);

    $query_showall = "SELECT rental.*,
                             car_name.*,
                             gallery.*,
                             car_make.* 
                        FROM rental,
                             car_name,
                             gallery,
                             car_make 
                       WHERE car_name.carName_id = gallery.carName_id 
                         AND car_name.carMake_id = car_make.carMake_id
                         AND rental.carName_id   = car_name.carName_id 
                    GROUP BY rental.carName_id";

    $result_showall = mysql_query($query_showall) or die(mysql_error());

    while($row_showall = mysql_fetch_array($result_showall)) {
        $carMake_all = $row_showall['carName'];

        $carmake_1[$row_showall['carName_id']][] = $row_showall;          
    }                                                                   

    foreach($carmake_1 as $make_1=>$name_1) {
        foreach($name_1 as $n_1) {
            echo $n_1['carName'].'<br/>'; 
            echo $n_1['gallery'].'<br/>';

            /* I need to loop through the rental table 
               to retrieve num of days and amount for 
               each car here.. */
            echo $n_1['rental_days'].'<br/>';
            echo $n_1['rental_amount'].'<br/>';     
        }                                                 
    }                                                  
?>                                              

edit without GROUP BY But how can I stop the carName and imageName not to repeat ?

    <?php
 mysql_select_db($database);


 $query_showall="SELECT rental.*,car_name.*,gallery.*,car_make.* FROM rental,car_name,gallery,car_make WHERE car_name.carName_id=gallery.carName_id AND  
     car_name.carMake_id=car_make.carMake_id   AND rental.carName_id=car_name.carName_id ORDER BY rental_days ASC";



$result_showall=mysql_query($query_showall)or die(mysql_error());
  while($row_showall=mysql_fetch_array($result_showall))
  {
      $carMake_all=$row_showall['carName'];
      $carmake_1[$row_showall['carName_id']][]=$row_showall;

  }                                                                 


            foreach($carmake_1 as $make_1=>$name_1)

                   {

            foreach($name_1 as $n_1)

                     {

                          echo $n_1['carName'].'<br/>'; 
                          echo $n_1['gallery'].'<br/>';
                          echo $n_1['rental_days'].'<br/>';
                          echo $n_1['rental_amount'].'<br/>';


                 }

                  }   

?>
  • 写回答

1条回答 默认 最新

  • duanqiongchong0354 2014-07-18 19:19
    关注

    Okay, I'll take a shot at this. What I would do is rebuild the array before you try to dump it out so that all your data is organized the way you want it to display, that way at each step of the foreach you can only display what you want.

    This code would use your SQL statement without the group by, which as you stated is including all the data.

    // Start with an empty array...
    $cars = array();
    
    // Loop over all your results
    while($row_showall = mysql_fetch_array($result_showall)) {
        // Set name, if the ID comes up again, it will be reset but won't hurt anything
        $cars[$row_showall['carName_id']]['name']    = $row_showall['carName'];
        // Set gallery, if the ID comes up again, it will be reset but won't hurt anything
        $cars[$row_showall['carName_id']]['gallery'] = $row_showall['gallery'];
    
        // Now, we add a new property called 'details' and put a new array in...
        $cars[$row_showall['carName_id']]['details'][] = array(
            // Storing a unique day
            'days'   => ['rental_days'],
            // And a unique amount
            'amount' => ['rental_amount']
        );
    }
    
    // Loop over each entry in our array...
    foreach($cars as $car) {
        // Print out the name, once
        echo $car['name'] . '<br />';
        // Print out the gallery, once
        echo $car['gallery'] . '<br />';
    
        // Loop over all the details...
        foreach($car['details'] as $detail) {
            // Print out each day
            echo $detail['days']  . '<br />';
            // Print out each amount
            echo $detail['amount']  . '<br />';
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法