Salve,
devo modificare il codice seguente in modo che si sviluppi in righe e non in colonne,
come accade ora.

Il codice seguente crea diverse colonne con vari campi,
raggiunto il numero max di colonne passa alla riga successiva e ricomincia con le vari ecolonne.



Codice PHP:
<?php
  
}

  
$list_box_contents = array();

  for (
$col=0$n=sizeof($column_list); $col<$n$col++) {
    switch (
$column_list[$col]) {

      case 
'PRODUCT_LIST_NAME':
        
$lc_text TABLE_HEADING_PRODUCTS;
        
$lc_align 'left';
        break;
      case 
'PRODUCT_LIST_MANUFACTURER':
        
$lc_text TABLE_HEADING_MANUFACTURER;
        
$lc_align '';
        break;


      case 
'PRODUCT_LIST_BUY_NOW':
        
$lc_text TABLE_HEADING_BUY_NOW;
        
$lc_align 'center';
        break;
    }

    if ( (
$column_list[$col] != 'PRODUCT_LIST_BUY_NOW') && ($column_list[$col] != 'PRODUCT_LIST_IMAGE') ) {
      
$lc_text tep_create_sort_heading($HTTP_GET_VARS['sort'], $col+1$lc_text);
    }


  }

  if (
$listing_split->number_of_rows 0) {
    
$rows 0;
    
$listing_query tep_db_query($listing_split->sql_query);
    while (
$listing tep_db_fetch_array($listing_query)) {
      
$rows++;

      if ((
$rows/2) == floor($rows/2)) {
        
$list_box_contents[] = array('params' => 'class="productListing-even"');
      } else {
        
$list_box_contents[] = array('params' => 'class="productListing-odd"');
      }

      
$cur_row sizeof($list_box_contents) - 1;

      for (
$col=0$n=sizeof($column_list); $col<$n$col++) {
        
$lc_align '';

        switch (
$column_list[$col]) {

          case 
'PRODUCT_LIST_NAME':
            
$lc_align '';
            if (isset(
$HTTP_GET_VARS['manufacturers_id'])) {
              
$lc_text '[url="' tep_href_link(FILENAME_PRODUCT_INFO'manufacturers_id=' $HTTP_GET_VARS['manufacturers_id'] . '&products_id=' $listing['products_id']) . '"]' $listing['products_name'] .'[/url]';
            } else {
              
$lc_text '[url="' tep_href_link(FILENAME_PRODUCT_INFO, ($cPath 'cPath=' $cPath '&' '') . 'products_id=' $listing['products_id']) . '"]' $listing['products_name'] . '[/url]';
            }
            break;
          case 
'PRODUCT_LIST_MANUFACTURER':
            
$lc_align '';
            
$lc_text '[url="' tep_href_link(FILENAME_DEFAULT'manufacturers_id=' $listing['manufacturers_id']) . '"]' $listing['manufacturers_name'] . '[/url]';
            break;



          case 
'PRODUCT_LIST_IMAGE':
            
$lc_align 'left';
            if (isset(
$HTTP_GET_VARS['manufacturers_id'])) {
              
$lc_text '[url="' tep_href_link(FILENAME_PRODUCT_INFO'manufacturers_id=' $HTTP_GET_VARS['manufacturers_id'] . '&products_id=' $listing['products_id']) . '"]' tep_image(DIR_WS_IMAGES $listing['products_image'], $listing['products_name'], SMALL_IMAGE_WIDTHSMALL_IMAGE_HEIGHT) . '[/url]';
            } else {
              
$lc_text '[url="' tep_href_link(FILENAME_PRODUCT_INFO, ($cPath 'cPath=' $cPath '&' '') . 'products_id=' $listing['products_id']) . '"]' tep_image(DIR_WS_IMAGES $listing['products_image'], $listing['products_name'], SMALL_IMAGE_WIDTHSMALL_IMAGE_HEIGHT) . '[/url]' '

'
;
            }
            break;
          case 
'PRODUCT_LIST_BUY_NOW':
            
$lc_align 'center';
            if (
$listing['products_quantity']<=0) {
       
$lc_text tep_image_button('button_buy_now_na.gif'IMAGE_BUTTON_BUY_NOW_NA) . '';
     } else {
       
$lc_text '[url="' tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' $listing['products_id']) . '"]' tep_image_button('button_buy_now.gif'IMAGE_BUTTON_BUY_NOW) . '[/url]';
            }

            break;
        }

        
$list_box_contents[$cur_row][] = array('align' => $lc_align,
                                               
'params' => 'class="productListing-data"',
                                               
'text'  => $lc_text);
      }
    }

    new 
productListingBox($list_box_contents);
  } else {
    
$list_box_contents = array();

    
$list_box_contents[0] = array('params' => 'class="productListing-odd"');
    
$list_box_contents[0][] = array('params' => 'class="productListing-data"',
                                   
'text' => TEXT_NO_PRODUCTS);

    new 
productListingBox($list_box_contents);
  }

  if ( (
$listing_split->number_of_rows 0) && ((PREV_NEXT_BAR_LOCATION == '2') || (PREV_NEXT_BAR_LOCATION == '3')) ) {
?>

grazie ciao