We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af9fe9a commit 763ae06Copy full SHA for 763ae06
test.php
@@ -0,0 +1,18 @@
1
+<?php
2
+include_once dirname(__FILE__).'/class.MySQL.php';
3
+
4
+$DB = new MySQL('test', 'root', 'myzYQswlLX', '127.0.0.1');
5
6
+/*
7
+$insertData = array('name'=>'kaysen', 'age'=>27, 'created'=>time());
8
+$status = $DB->insert('kaysen_tab', $insertData);
9
+var_dump($status);
10
+ */
11
12
13
+$status = $DB->update('kaysen_tab', array('age'=>666), array('id'=>1));
14
15
16
17
+$status = $DB->delete('kaysen_tab', array('id'=>1));
18
0 commit comments