diff --git a/tests/bin-info.inc b/tests/bin-info.inc deleted file mode 100644 index ad42ea897a8..00000000000 --- a/tests/bin-info.inc +++ /dev/null @@ -1,21 +0,0 @@ - \ No newline at end of file diff --git a/tests/foo b/tests/foo deleted file mode 100644 index 125c655b0fe..00000000000 --- a/tests/foo +++ /dev/null @@ -1,5 +0,0 @@ -a -b -@c@ -d -e diff --git a/tests/foo2 b/tests/foo2 deleted file mode 100644 index 4cdd41e3dcf..00000000000 --- a/tests/foo2 +++ /dev/null @@ -1,3 +0,0 @@ - - -print $a->b(12,13)."\n"; diff --git a/tests/foo3 b/tests/foo3 deleted file mode 100644 index 08681b98c2d..00000000000 --- a/tests/foo3 +++ /dev/null @@ -1,43 +0,0 @@ - - -class foo { - function foo() { - print "foo()\n"; - } - function bar(&$blah, $foobar=7) { - $foobar += 19; - } - - function hello_world() { - return "Hello, World!"; - } - - function print_string($str) { - print "$str\n"; - return 666; - } - var $foo; - var $bar="this is a test..."; -}; - -class bar { - function foo($a,$b) { - $a *= 3; - return $a+$b; - } - function bar(&$blah, $foobar=7) { - $foobar += 19; - } - - var $foo; - var $bar="this is a test..."; -}; - - -$b = new foo; -$a = $b; -print $a->print_string($a->hello_world())."\n"; -print $b->print_string($b->hello_world())."\n"; -$a->foo = 5; -print $a->foo; -print $a->foo(); diff --git a/tests/foo4 b/tests/foo4 deleted file mode 100644 index 29df84d0e23..00000000000 --- a/tests/foo4 +++ /dev/null @@ -1,41 +0,0 @@ - - -class foo { - function foo($a,$b) { - $a *= 3; - return $a+$b; - } - function bar(&$blah, $foobar=7) { - $foobar += 19; - } - - function hello_world() { - return "Hello, World!"; - } - - function print_string($str) { - print "$str\n"; - return 666; - } - var $foo; - var $bar="this is a test...."; -}; - -class bar { - function foo($a,$b) { - $a *= 3; - return $a+$b; - } - function bar(&$blah, $foobar=7) { - $foobar += 19; - } - - var $foo; - var $bar="this is a test..."; -}; - - -$b = new foo; -$a = &$b; -$b->asd = 5; -print $b->asd; diff --git a/tests/odbc-display.php b/tests/odbc-display.php deleted file mode 100644 index f79a854aea8..00000000000 --- a/tests/odbc-display.php +++ /dev/null @@ -1,19 +0,0 @@ - diff --git a/tests/odbc-t1.php b/tests/odbc-t1.php deleted file mode 100644 index 90cb97910f5..00000000000 --- a/tests/odbc-t1.php +++ /dev/null @@ -1,38 +0,0 @@ - -
--Dropping table "php3_test" - -- OK
-Create table "php_test" - - - OK
-Table Info:
-
Name | -Type | -Length | -
---|---|---|
- | - | - |
-
-">Proceed to next test -| Change login information - - - -
- - - - diff --git a/tests/odbc-t3.php b/tests/odbc-t3.php deleted file mode 100644 index edfdc658f89..00000000000 --- a/tests/odbc-t3.php +++ /dev/null @@ -1,95 +0,0 @@ - - --Clearing table "php_test" - - - OK
-Inserting into table "php_test" - - - OK
-
A | B | C | D | -
---|---|---|---|
test-1 | 1001 | 100.01 | php - values 1 | -
test-2 | 1002 | 200.02 | php - values 2 | -
test-3 | 1003 | 300.03 | php - values 3 | -
test-4 | 1004 | 400.04 | php - values 4 | -
test-5 | 1005 | 500.05 | php - values 5 | -
-
-">Proceed to next test -| Change login information - -
- - - - diff --git a/tests/odbc-t4.php b/tests/odbc-t4.php deleted file mode 100644 index 10e8f4b2d96..00000000000 --- a/tests/odbc-t4.php +++ /dev/null @@ -1,91 +0,0 @@ - - -- -
-Updating table "php_test" -1002 for update'))){ - $cursor = odbc_cursor($result); - if(($upd = odbc_prepare($conn,"update php_test set a=?, b=? where current of $cursor"))){ - while(odbc_fetch_row($result)) { - $params[0] = odbc_result($result, 1) . "(*)"; - $params[1] = odbc_result($result, 2) + 2000; - odbc_execute($upd, $params); - } - odbc_commit($conn); - } - } - if($result && $upd){ -?> - - OK
-
A | B | C | D | -
---|---|---|---|
test-1 | 1001 | 100.01 | php3 - values 1 | -
test-2 | 1002 | 200.02 | php - values 2 | -
test-3(*) | 3003 | 300.03 | php - values 3 | -
test-4(*) | 3004 | 400.04 | php - values 4 | -
test-5(*) | 3005 | 500.05 | php - values 5 | -
- Note: If you reload this testpage, - the three last rows will contain different values in columns A and B - |
-
-Images in database"; - while(odbc_fetch_into($res, &$imgs)){ - echo "$imgs[0] : \n
"; - } - }else{ - echo "Couldn't execute query"; - } - echo "\n