-
Notifications
You must be signed in to change notification settings - Fork 73
/
ejemplo1PDOA.php
50 lines (29 loc) · 1.28 KB
/
ejemplo1PDOA.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
<!DOCTYPE html>
<html>
<head>
<body>
<div class="container">
<div class="page-header">
<h1>Ejemplos de PHP</h1>
</div>
<div class="jumbotron">
<h3 class="text-info"> fetchAll</h3>
</div>
<?php
try
{
$db = new PDO('mysql:host=localhost;dbname=cdcol;charset=utf8', 'root', '', array(PDO::ATTR_EMULATE_PREPARES => false,PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION));
$sql = $db->query('SELECT titel as titulo,interpret as cantante, jahr as año FROM cds ');
$catidadFilas = $sql->rowCount();
echo "cantidad de filas: ".$catidadFilas."<br>";
}
catch(PDOException $ex)
{
echo "error ocurrido!";
echo $ex->getMessage();
}
?>
<a class="btn btn-info" href="indexPDO.html">Menu principal</a>
</div>
</body>
</html>