-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.php
executable file
·87 lines (75 loc) · 3.38 KB
/
examples.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
/*
:....................,:,
,.`,,,::;;;;;;;;;;;;;;;;:;`
`...`,::;:::::;;;;;;;;;;;;;::'
,..``,,,::::::::::::::::;:;;:::;
:.,,``..::;;,,,,,,,,,,,,,:;;;;;::;`
,.,,,`...,:.:,,,,,,,,,,,,,:;:;;;;:;;
`..,,``...;;,;::::::::::::::'';';';:''
,,,,,``..:;,;;:::::::::::::;';;';';;'';
,,,,,``....;,,:::::::;;;;;;;;':'''';''+;
:,::```....,,,:;;;;;;;;;;;;;;;''''';';';;
`,,::``.....,,,;;;;;;;;;;;;;;;;'''''';';;;'
:;:::``......,;;;;;;;;:::::;;;;'''''';;;;:
;;;::,`.....,::;;::::::;;;;;;;;'''''';;,;;,
;:;;:;`....,:::::::::::::::::;;;;'''':;,;;;
';;;;;.,,,,::::::::::::::::::;;;;;''':::;;'
;';;;;.;,,,,::::::::::::::::;;;;;;;''::;;;'
;'';;:;..,,,;;;:;;:::;;;;;;;;;;;;;;;':::;;'
;'';;;;;.,,;:;;;;;;;;;;;;;;;;;;;;;;;;;:;':;
;''';;:;;.;;;;;;;;;;;;;;;;;;;;;;;;;;;''';:.
:';';;;;;;::,,,,,,,,,,,,,,:;;;;;;;;;;'''';
'';;;;:;;;.,,,,,,,,,,,,,,,,:;;;;;;;;'''''
'''';;;;;:..,,,,,,,,,,,,,,,,,;;;;;;;''':,
.'''';;;;....,,,,,,,,,,,,,,,,,,,:;;;''''
''''';;;;....,,,,,,,,,,,,,,,,,,;;;''';.
'''';;;::.......,,,,,,,,,,,,,:;;;''''
`''';;;;:,......,,,,,,,,,,,,,;;;;;''
.'';;;;;:.....,,,,,,,,,,,,,,:;;;;'
`;;;;;:,....,,,,,,,,,,,,,,,:;;''
;';;,,..,.,,,,,,,,,,,,,,,;;',
'';:,,,,,,,,,,,,,,,::;;;:
`:;'''''''''''''''';:.
,,,::::::::::::::::::::::::;;;;,::::::::::::::::::::::::
,::::::::::::::::::::::::::;;;;,::::::::::::::::::::::::
,:; ## ## ## ##### #### ## ## ## ## ## ;::
,,; ## ## ## ## ## ## ## ## ## ## ## ;::
,,; ## ## ## ## ## ## #### ## ## ## ## ## ;::
,,' ## ## ## ## ## ## ## ## ## ## ## ## :::
,:: ######## #### ###### ######## ### :::
,,,:,,:,,:::,,,:;:::::::::::::::;;;:::;:;:::::::::::::::
,,,,,,,,,,,,,,,,,,,,,,,,:,::::::;;;;:::::;;;;::::;;;;:::
(c) WDGWV. 2013, http://www.wdgwv.com
websites, Apps, Hosting, Services, Development.
File Checked.
Checked by: WdG.
File created: WdG.
date: 01-FEB-2014
Last update: 01-FEB-2014
© WDGWV, www.wdgwv.com
All Rights Reserved.
*/
/*
## DISCLAIMER // INFO ##
This code is written by WdG (Wesley de Groot)
This code is tested by WdG and EH (Edwin Huijboom)
This code is provided by WDGWV
more info? http://wdgwv.github.io/MySQL_Support.html
## END OF DISCLAIMER // INFO ##
*/
include 'wdgwv_sql.php';
wdgwv_sql_connect('localhost', 'user', 'pass');
wdgwv_sql_select_db('test_database');
$result = wdgwv_sql_query("SELECT * FROM test");
//nb. use for foreach wdgwv_sql_fetch_arry($result, true)
// Where the true stand for foreach support...
foreach ( wdgwv_sql_fetch_array($result, true) as $item )
{
echo $item['description'];
}
// Other
$result = wdgwv_sql_query("SELECT * FROM test");
$res_arr = wdgwv_sql_fetch_array($result);
print_r($res_arr);
?>