@@ 16-26 (lines=11) @@ | ||
13 | parent::__construct(); |
|
14 | } |
|
15 | ||
16 | public function insertarDatos($id_blog, $nombre, $email, $comentario){ |
|
17 | ||
18 | $post=$this->_bd->consulta('INSERT INTO comentarios (id_blog, nombre, email, comentario) VALUES (:id_blog, :nombre, :email, :comentario)'); |
|
19 | $post=$this->_bd->enlace(':id_blog', $id_blog); |
|
20 | $post=$this->_bd->enlace(':nombre',$nombre); |
|
21 | $post=$this->_bd->enlace(':email', $email); |
|
22 | $post=$this->_bd->enlace(':comentario', $comentario); |
|
23 | $post=$this->_bd->ejecucion(); |
|
24 | return $post=$this->_bd->resultset(); |
|
25 | ||
26 | } |
|
27 | ||
28 | public function llamarDatosCategoria(){ |
|
29 | //echo DB_HOST; |
@@ 12-22 (lines=11) @@ | ||
9 | return $query->row(); // Devolvemos al controlador la fila que coincide con la búsqueda. (FALSE en caso que no existir coincidencias) |
|
10 | } |
|
11 | ||
12 | public function insertarUsuario($id_usuario, $nombre, $email, $clave){ |
|
13 | ||
14 | $post=$this->_bd->consulta('INSERT INTO comentarios (id_usuario, nombre, email, clave) VALUES (:id_usuario, :nombre, :email, :clave)'); |
|
15 | $post=$this->_bd->enlace(':id_usuario', $id_usuariio); |
|
16 | $post=$this->_bd->enlace(':nombre',$nombre); |
|
17 | $post=$this->_bd->enlace(':email', $email); |
|
18 | $post=$this->_bd->enlace(':clave', $clave); |
|
19 | $post=$this->_bd->ejecucion(); |
|
20 | return $post=$this->_bd->resultset(); |
|
21 | ||
22 | } |
|
23 | ||
24 | public function seleccionUsuario($email, $clave){ |
|
25 | //echo DB_HOST; |
|
@@ 37-48 (lines=12) @@ | ||
34 | ||
35 | } |
|
36 | ||
37 | public function insertarRegistro($nombre, $email, $nivel, $clave){ |
|
38 | ||
39 | $post=$this->_bd->consulta('INSERT INTO usuarios (nombre, email, nivel, clave) VALUES (:nombre, :email, :nivel, :clave)'); |
|
40 | ||
41 | $post=$this->_bd->enlace(':nombre',$nombre); |
|
42 | $post=$this->_bd->enlace(':email', $email); |
|
43 | $post=$this->_bd->enlace(':nivel', $nivel); |
|
44 | $post=$this->_bd->enlace(':clave', $clave); |
|
45 | $post=$this->_bd->ejecucion(); |
|
46 | //return $post=$this->_bd->contarFilas(); |
|
47 | ||
48 | } |
|
49 | } |