-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathado.php
59 lines (57 loc) · 1.25 KB
/
ado.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
49
50
51
52
53
54
55
56
57
58
59
<?php
$conn = new mysqli("127.0.0.1",
"root",
"studentpwd",
"nw201501");
if($conn->errno){
die($conn->error);
}
function obtenerRegistros($strsql){
GLOBAL $conn;
$registros = array();
if($strsql != ""){
$cursor = $conn->query($strsql);
while($registro = $cursor->fetch_assoc()){
$registros[] = $registro;
}
}
return $registros;
}
function obtenerUnRegistro($strsql){
GLOBAL $conn;
if($strsql != ""){
$cursor = $conn->query($strsql);
while($registro = $cursor->fetch_assoc()){
return $registro;
}
}
return false;
}
function insertRegistro($strsql){
GLOBAL $conn;
if($strsql != ""){
$result = $conn->query($strsql);
if(!$result) return 0;
return $conn->insert_id;
}
return 0;
}
function updateRegistro($strsql){
GLOBAL $conn;
if($strsql != ""){
$result = $conn->query($strsql);
if(!$result) return 0;
return true;
}
return false;
}
function deleteRegistro($strsql){
GLOBAL $conn;
if ($strsql !=""){
$result = $conn->query($strsql);
if (!$result) return 0;
return true;
}
return false;
}
?>