Close a database table.
Prototype:
This function close the table previously opened and identified by resource $handle passed as argument.
RETURN : The function returns TRUE if all is ok or FALSE.
<?php $resource = mfcdb_open("mydatabase"); if($resource == FALSE) { die("An error occurred opening table, error is: ".mfcdb_error()."\n"); } echo "Resource dump: ".print_r($resource, true)."\n"; if(mfcdb_close($resource) == FALSE) { die("An error occurred closing table, error is: ".mfcdb_error()."\n"); } ?>