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 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历