| 1234567891011121314151617 |
- Esto es un div
- <?
- include('db.php');
- $statement = $db->prepare("SELECT `nombre` FROM `productos` WHERE `categoria` = ?");
- $cat = 'FACIALES';
- $statement->bind_param('s', $cat);
- $statement->execute();
- $statement->bind_result($nombre);
- while($statement->fetch()){
- echo "<b>hola que tal</b>";
- echo "$nombre <br />";
- }
- ?>
- aca termina mi div
|