summaryrefslogtreecommitdiff
path: root/ext/db/tests/002.phpt
blob: 3c797370c5bd812e4d64529c447d8654c60a8b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
DBM Insert/Fetch Test
--SKIPIF--
<?php if (!extension_loaded("db")) print "skip";?>
--FILE--
<?php
	require_once('test.inc');
	if (dbmopen($db_file, "n")) {
		dbminsert($db_file, "key1", "This is a test insert");
		echo dbmfetch($db_file, "key1");
		dbmclose($db_file);
	} else {
		echo "Error creating database\n";
	}
?>
--EXPECT--
This is a test insert