【问题标题】:Display table row显示表格行
【发布时间】:2017-11-25 05:13:04
【问题描述】:

仅当满足我的条件时,我才想显示带有按钮的表格行 (例如: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-&gt;Estado=='Aceptado')条件时,返回语法错误。

【问题讨论】:

    标签: php codeigniter html-table


    【解决方案1】:

    请在 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 } ?>
    

    【讨论】:

      猜你喜欢
      • 2016-12-13
      • 1970-01-01
      • 1970-01-01
      • 2010-10-20
      • 2018-01-29
      • 2011-08-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多