Foros del Web » Programando para Internet » PHP »

Ayuda Con Modulo

Estas en el tema de Ayuda Con Modulo en el foro de PHP en Foros del Web. Holas de Nuevo Tengo un problema con un codigo del oscommerce y es el siguiente necesito poner una opcion para que me pagine por letras ...
  #1 (permalink)  
Antiguo 29/04/2008, 16:45
Avatar de yuguilley  
Fecha de Ingreso: febrero-2004
Ubicación: Montenegro Quindío
Mensajes: 108
Antigüedad: 20 años, 2 meses
Puntos: 0
Ayuda Con Modulo

Holas de Nuevo

Tengo un problema con un codigo del oscommerce y es el siguiente

necesito poner una opcion para que me pagine por letras a b c e d ....

pero no he podido,

lo hice COLOCANDO ESTO --- LIKE 'A%', ---- pero no me resulta.

alguien me puede ayudar?


este es el includes/modulos/product_liting.php
Código PHP:
<?php
  
}

  
$list_box_contents = array();

  for (
$col=0$n=sizeof($column_list); $col<$n$col++) {
    switch (
$column_list[$col]) {
      case 
'PRODUCT_LIST_MODEL':
        
$lc_text TABLE_HEADING_MODEL;
        
$lc_align '';
        break;
      case 
'PRODUCT_LIST_NAME':
        
$lc_text TABLE_HEADING_PRODUCTS;
        
$lc_align '';
        break;
      case 
'PRODUCT_LIST_MANUFACTURER':
        
$lc_text TABLE_HEADING_MANUFACTURER;
        
$lc_align '';
        break;
      case 
'PRODUCT_LIST_PRICE':
        
$lc_text TABLE_HEADING_PRICE;
        
$lc_align 'right';
        break;
      case 
'PRODUCT_LIST_QUANTITY':
        
$lc_text TABLE_HEADING_QUANTITY;
        
$lc_align 'right';
        break;
      case 
'PRODUCT_LIST_WEIGHT':
        
$lc_text TABLE_HEADING_WEIGHT;
        
$lc_align 'right';
        break;
      case 
'PRODUCT_LIST_IMAGE':
        
$lc_text TABLE_HEADING_IMAGE;
        
$lc_align 'center';
        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);
    }

    
$list_box_contents[0][] = array('align' => $lc_align,
                                    
'params' => 'class="productListing-heading"',
                                    
'text' => '&nbsp;' $lc_text '&nbsp;');
  }

  if (
$listing_split->number_of_rows 0) {
    
$rows 0;
    
$column 0;
    echo 
'   
                    <table cellspacing=0 cellpadding=6 border=0 width="662" >
                     <tr><td class="pageHeading"><div class="trail">'
.$breadcrumb->trail(' &raquo; ').'</div></td></tr>
                     <tr><td class="r2">
                          <table cellspacing=0 cellpadding=4  align=center >
                            <tr>



         '
;

    
$listing_query tep_db_query($listing_split->sql_query);
    while (
$listing tep_db_fetch_array($listing_query)) {
      
$product_contents = array();
      
$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_MODEL':
            
$lc_align '';
            
$lc_text '&nbsp;' $listing['products_model'] . '&nbsp;';
            break;
          case 
'PRODUCT_LIST_NAME':
            
$lc_align '';
            if (isset(
$HTTP_GET_VARS['manufacturers_id'])) {
              
$lc_text '<a class=ml5 href="' tep_href_link(FILENAME_PRODUCT_INFO'manufacturers_id=' $HTTP_GET_VARS['manufacturers_id'] . '&products_id=' $listing['products_id']) . '">' $listing['products_name'] . '</a>';
            } else {
              
$lc_text '<a class=ml5 href="' tep_href_link(FILENAME_PRODUCT_INFO, ($cPath 'cPath=' $cPath '&' '') . 'products_id=' $listing['products_id']) . '">' $listing['products_name'] . '</a>';
            }
            break;
          case 
'PRODUCT_LIST_MANUFACTURER':
            
$lc_align '';
            
$lc_text '&nbsp;<a href="' tep_href_link(FILENAME_DEFAULT'manufacturers_id=' $listing['manufacturers_id']) . '">' $listing['manufacturers_name'] . '</a>&nbsp;';
            break;
          case 
'PRODUCT_LIST_PRICE':
            
$lc_align 'right';
            if (
tep_not_null($listing['specials_new_products_price'])) {
              
$lc_text '<span style="color:#7F7F7F;font-size:12px"><s>' .  $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</s></span> <span  class=sc2>' $currencies->display_price($listing['specials_new_products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span>';
            } else {
              
$lc_text '<span>' $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span>';
            }
            break;
          case 
'PRODUCT_LIST_QUANTITY':
            
$lc_align 'right';
            
$lc_text '&nbsp;' $listing['products_quantity'] . '&nbsp;';
            break;
          case 
'PRODUCT_LIST_WEIGHT':
            
$lc_align 'right';
            
$lc_text '&nbsp;' $listing['products_weight'] . '&nbsp;';
            break;
          case 
'PRODUCT_LIST_IMAGE':
            
$lc_align 'center';
            if (isset(
$HTTP_GET_VARS['manufacturers_id'])) {
              
$lc_text '<a href="' 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) . '</a>';
            } else {
              
$lc_text '&nbsp;<a href="' 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'class="reflect rheight20"') . '</a>&nbsp;';
            }
            break;
          case 
'PRODUCT_LIST_BUY_NOW':
            
$lc_align 'center';
            
$lc_text '<a href="' 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) . '</a>&nbsp;';
            break;
        }

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


      
$product_query tep_db_query("select products_description  from " TABLE_PRODUCTS_DESCRIPTION " where products_id = '" . (int)$listing['products_id'] . "' and language_id = '" . (int)"'");
      
$product tep_db_fetch_array($product_query);
      
$new_products['products_description'] = $product['products_description'];

      echo 
'
                           <td class="tdline" valign=top align=center><div class="plisting">'
substr($listing['products_name'], 022). '...</div>
                                <table border=0 width="144" cellspacing=0 cellpadding=0 align=center>
                                 <tr><td align=center >'
.$product_contents[0].'</td>
                                      </tr>
                                 <td colspan=2><td></tr>
                                 <tr><td bgcolor="#f9f9f9" colspan=2 align="center" height="20"><div id="d2"><a href="' 
tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=rent_now&products_id=' $listing['products_id']) . '">Rent</a> | <a href="' tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' $listing['products_id']) . '">Buy</a> | <a href="' tep_href_link(FILENAME_PRODUCT_INFO'products_id=' $listing['products_id']) . '">View</a> | Trailer </div></td></tr>
                                </table>
                               </td>




      '
;
      
$column ++;
      if (
$column >= 4) {
        
$rows ++;
        
$column 0;
        echo 
'


                           </tr>
                           <tr><td colspan=4 height=2 bgcolor=#ffffff></td></tr>
                           <tr><td colspan=3></td></tr>
                           
                           <tr>


             '
;
      } else echo 
'<td width=1></td>';
    
    
    
    }

    echo 
'



                           </tr>                                                     
                          </table>
                     </td></tr>
                     <tr><td></td></tr>
                    </table>

         '
;

    
//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);

    echo 
'<div class=PageHeading>Categories</div>';
    new 
productListingBox($list_box_contents);
  }

  if ( (
$listing_split->number_of_rows 0) && ((PREV_NEXT_BAR_LOCATION == '2') || (PREV_NEXT_BAR_LOCATION == '3')) ) {
?>
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 18:08.