2017-06-22 5 views
1

私の条件が (例:if ($row->Estado=='Aceptado'))を満たしている場合にのみ、そのボタンで表の行を表示したいとします。テーブルの行を表示

コード:

<?php 
if ($cotizaciones!= FALSE) {?> 
<table id="verlistacli" class="display" cellspacing="0" width="100%"> 
<thead> 
    <tr> 
     <th>Id Cotizacion</th> 
     <th>Fecha Cotizacion</th> 
     <th>Tipo Trabajo</th> 
     <th>Origen del Material</th> 
     <th>Material</th> 
     <th>Dimensiones</th> 
     <th>Cantidad</th> 
     <th>Estado</th> 
     <th></th> 
    </tr> 
</thead> 
<tbody> 
<?php 
    foreach ($cotizaciones->result() as $row) { 
     echo "<tr>"; 
      echo"<td>".$row->IdCotizacion."</td>"; 
      echo "<td>".$row->FechaCotizacion."</td>"; 
      if ($row->TipoTrabajo==0) { 
       echo "<td>Fabricacion</td>"; 
      }else{ 
       echo "<td>Reparacion</td>"; 
      }; 
      if ($row->OrigenMaterial==0) { 
       echo "<td>Empresa</td>"; 
      }else{ 
       echo "<td>Cliente</td>"; 
      }; 
      echo "<td>".$row->Material."</td>"; 
      echo "<td>".$row->Alto."x".$row->Ancho."x".$row->Largo."</td>"; 
      echo "<td>".$row->Cantidad."</td>"; 
      echo "<td>".$row->Estado."</td>"; 
      if ($row->Estado=='Aceptado'){ 
    <td><a class='btn-sm btn-info' href="<?php echo base_url('profile/detallecotizacioncli/'.$row->IdCotizacion); ?>">Detalles</a></td> 

     }?> 
     <?php echo "</tr>"; 
    } 
?> 
</tbody> 
</table> 
<input type="button" class="btn btn-default" value="Volver" 
onclick="history.back(-1)" /> 
<?php }else{ 
     echo "<h2> No hay cotizaciones <h2>"; 
    }?> 

条件if ($row->Estado=='Aceptado')が出会うあり、それは構文エラーを返します。

答えて

0

htmlの前にPHPを終了してください。phpタグの中にphpタグを開くことができません。

if ($row->Estado=='Aceptado'){ ?> <!--here you need to close php tag --> 
    <td><a class='btn-sm btn-info' href="<?php echo base_url('profile/detallecotizacioncli/'.$row->IdCotizacion); ?>">Detalles</a></td> 

    <?php } ?> 
+0

THX男! 、私は完全にそれを欠場 – lalo

関連する問題