Guest User

Untitled

a guest
May 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2. $consulta = "SELECT * FROM etapas_lab WHERE id_cliente = '$id_us'";
  3. $ejecutar_consulta = $conexion->query($consulta);
  4. $nomx = array();
  5. while ($registro = $ejecutar_consulta->fetch_assoc())
  6. {
  7. $nom = utf8_encode($registro["nombre"]);
  8. echo '<th>'.$nom.' </th>';
  9. }
  10. ?>
Add Comment
Please, Sign In to add comment