-
Notifications
You must be signed in to change notification settings - Fork 4
/
livros.php
46 lines (38 loc) · 821 Bytes
/
livros.php
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
require_once 'servidor.php';
// insert into
/*
$titulo = 'HTML5 + mobile';
$autor = 'Iparos';
$preco = '999';
$paginas = '99';
consulta_dados("insert into livros (titulo, autor, preco, paginas)
values ('$titulo', '$autor', $preco, $paginas)");
*/
// update
/*
consulta_dados("update livros set titulo = 'PHP para iniciantes' where id = 2");
*/
// delete
/*
consulta_dados('delete from livros where id = 8');
*/
// select
$livros_query = consulta_dados("
select
livros.titulo,
livros.categoria,
livros.preco,
livros.paginas,
autores.nome as autor
from
livros,
autores
where
livros.autor_id = autores.id
");
while($livros = mysqli_fetch_assoc($livros_query)){
echo '<pre>';
print_r($livros);
echo '</pre>';
}