-
Notifications
You must be signed in to change notification settings - Fork 0
/
55_get_post_backend.php
48 lines (40 loc) · 1.35 KB
/
55_get_post_backend.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
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PDO</title>
</head>
<body>
<?php
/* GET envía la información por URL. Si es info sensible se puede
ver por la web y queda cacheada:
/54_pdo_marcadores.php?reference=ref1&family=ERP&send=Send
Se usa con pocos parámetros e info poco sensible. Con AJAX.
POST no envía por URL. Cuando metamos users and passwords, no
se quiera rescatar de la caché o trabajemos con mucha información
(campos textarea)
*/
$reference = $_POST["reference"];
$family = $_POST["family"];
try{
$pdo = new PDO("mysql:host=localhost; dbname=infoestrella", "root", "");
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$pdo->exec("SET CHARACTER SET utf8");
$sql = "SELECT referencia, descripcion FROM productos
WHERE referencia= :markReference AND codfamilia= :markFamily";
$statement = $pdo->prepare($sql);
$statement->execute(array(":markReference"=>$reference, "markFamily"=>$family));
while ($arrayResult = $statement->fetch(PDO::FETCH_ASSOC)){
echo $arrayResult['referencia'] . " -> " . $arrayResult['descripcion'] . "<br>";
}
$statement->closeCursor();
}
catch(Exception $exception){
die('Exception: ' . $exception->getMessage());
}
finally{
$pdo = null;
}
?>
</body>
</html>