Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/11/2012, 14:56
Avatar de andrespalacio
andrespalacio
 
Fecha de Ingreso: noviembre-2012
Ubicación: Panamá
Mensajes: 21
Antigüedad: 11 años, 5 meses
Puntos: 0
Respuesta: Consulta campo "parcial" sql con php

parte del codigo:
Código PHP:
Ver original
  1. [QUOTE]if($this->pagination->total > 0) : ?>
  2.  
  3.         <table class="list stripe">
  4.             <thead>
  5.                 <tr>
  6.                     <th class="checkbox">
  7.                         <input type="checkbox" class="check-all" />
  8.                     </th>
  9.                     <th class="type">
  10.                         <?php echo $this->app->html->_('grid.sort', 'Type', 'a.type', @$this->lists['order_Dir'], @$this->lists['order']); ?>
  11.                     </th>
  12.                     <th class="type">
  13.                         <?php echo $this->app->html->_('grid.sort', 'Ref', 'a.ref', @$this->lists['order_Dir'], @$this->lists['order']); ?>
  14.                     </th>
  15.                     <th class="name" colspan="2">
  16.                         <?php echo $this->app->html->_('grid.sort', 'Name', 'a.name', @$this->lists['order_Dir'], @$this->lists['order']); ?>
  17.                     </th>
  18.                     <th class="published">
  19.                         <?php echo $this->app->html->_('grid.sort', 'Published', 'a.state', @$this->lists['order_Dir'], @$this->lists['order']); ?>
  20.                     </th>
  21.                     <th class="frontpage">
  22.                         <?php echo JText::_('Frontpage'); ?>
  23.                     </th>
  24.                     <th class="searchable">
  25.                         <?php echo JText::_('Searchable'); ?>
  26.                     </th>
  27.                     <th class="comments">
  28.                         <?php echo JText::_('Comments'); ?>
  29.                     </th>
  30.                     <th class="priority">
  31.                         <?php echo $this->app->html->_('grid.sort', 'Order Priority', 'a.priority', @$this->lists['order_Dir'], @$this->lists['order']); ?>
  32.                     </th>
  33.                     <th class="access">
  34.                         <?php echo $this->app->html->_('grid.sort', 'Access', 'a.access', @$this->lists['order_Dir'], @$this->lists['order']); ?>
  35.                     </th>
  36.                     <th class="author">
  37.                         <?php echo $this->app->html->_('grid.sort', 'Author', 'a.created_by', @$this->lists['order_Dir'], @$this->lists['order']); ?>
  38.                     </th>
  39.                     <th class="date">
  40.                         <?php echo $this->app->html->_('grid.sort', 'Date', 'a.created', @$this->lists['order_Dir'], @$this->lists['order']); ?>
  41.                     </th>
  42.                     <th class="hits">
  43.                         <?php echo $this->app->html->_('grid.sort', 'Hits', 'a.hits', @$this->lists['order_Dir'], @$this->lists['order']); ?>
  44.                     </th>
  45.                 </tr>[/QUOTE]