Hi I have windows me, php 4, mysql configured but I am now trying to do DBM databases and this example right off the book will not work? Do I have to configure something else to get this to work?
<?php
$dbh = dbmopen("./data/products","c");
dbminsert($dbh, "Sonic Screwdriver", "23.20");
dbminsert($dbh, "Tricorder", "55.50");
dbminsert($dbh, "ORAC AI", "2200.50");
dbminsert($dbh, "HAL 2000", "4500.50");
dbmclose($dbh);
?>