Imprimir variable php dentro de tabla html
Publicado por Mario Tovar (12 intervenciones) el 02/03/2018 15:44:07
estoy tratando de imprimir una tabla con valores pero como titulo deseo que me imprima una variable imprimo la tabla con un echo pero no logro hacer que el hecho tambien me imprima la variable
la variable la quiero imprimir como titulo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
echo"
<h3>ventas,$fecha, </h3>
<table class="table table-striped table-condensed table-hover table-responsive ">
<tr class="info">
<th width="300">ID</th>
<th width="200">Nombre</th>
<th width="150">Sucursal</th>
<th width="150">Fecha</th>
<th width="150">Total</th>
</tr>';
if(mysqli_num_rows($registro)>0){
while($registro2 = mysqli_fetch_array($registro)){
echo '<tr>
<td>'.$registro2['id'].'</td>
<td>'.$registro2['nombre'].'</td>
<td> '.$registro2['sucursal'].'</td>
<td>'.fechaNormal($registro2['fecha']).'</td>
<td>$ '.$registro2['total'].'</td>
</tr>";
}
}else{
echo '<tr>
<td colspan="6">No se encontraron resultados</td>
</tr>';
}
echo '</table>';
Valora esta pregunta
0