Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/04/2015, 10:36
superweb360
(Desactivado)
 
Fecha de Ingreso: abril-2015
Ubicación: España
Mensajes: 616
Antigüedad: 9 años, 7 meses
Puntos: 74
Respuesta: php embebido en html

Código HTML:
Ver original
  1. <?php
  2. $shop = array(
  3.    array("rose",   1.25, 15),
  4.    array("daisy",  0.75, 25),
  5.    array("orchid", 1.15, 7 ),
  6. );
  7. ?>
  8.  
  9.    <table>
  10.      <tr>
  11.        <th>title</th>
  12.        <th>price</th>
  13.        <th>number</th>
  14.      </tr>
  15.      <?php foreach ($shop as $row) : ?>
  16.      <tr>
  17.        <td><?php echo $row[0]; ?></td>
  18.        <td><?php echo $row[1]; ?></td>
  19.        <td><?php echo $row[2]; ?></td>
  20.      </tr>
  21.      <?php endforeach; ?>
  22.    </table>

Última edición por superweb360; 10/04/2015 a las 17:32