forked from filipi/onde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
listAlbuns.php
29 lines (22 loc) · 935 Bytes
/
listAlbuns.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
<?PHP
//////////////////////// Tratar todos os GET aqui para eviter injecao de codigo
///////////////////////////////////////////////////////////////// Tratando POST
/////////////////////////////////////////////// GET passado para links (action)
///////////////////////////////////////////////////////////////////// Cabecalho
$useSessions = 1;
$ehXML = 1;
$headerTitle = "";
$myPATH = ini_get('include_path') . ':./include:../include:../../include';
ini_set('include_path', $myPATH);
include "light_header.inc";
//////////////////////////////////////////////////////////////// Funcoes locais
///////////////////////////////////////////////////////////////////////////////
$query = "SELECT codigo, \"Álbum\" FROM albuns WHERE \"Álbum\" != 'Perfil';";
$result = pg_query($conn, $query);
$albuns = pg_fetch_all($result);
echo json_encode($albuns);
/* echo "<PRE>";
print_r($albuns);
echo "</PRE>";
*/
include "page_footer.inc";