【发布时间】: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->Estado=='Aceptado')条件时,返回语法错误。
【问题讨论】:
标签: php codeigniter html-table