显示表格行

时间:2017-06-22 05:15:11

标签: php codeigniter html-table

我只想在符合条件的情况下显示带有按钮的表格行 (例如: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')时,会返回语法错误。

1 个答案:

答案 0 :(得分:0)

请在html之前关闭php.you无法在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 } ?>
相关问题