Skip to content

Latest commit

 

History

History
executable file
·
26 lines (16 loc) · 499 Bytes

README.markdown

File metadata and controls

executable file
·
26 lines (16 loc) · 499 Bytes

Paradox Database PHP Library

A PHP library for SQL-like access to a Paradox database file.

Requirements

Usage

<?php
	
	$pdox = new Paradox_Database();
	
	$pdox->open('database.db');
	
	$pdox
		->select('field1, field2, field3')
		->where('field1', '>', '6')
		->limit(5);
	
	$results = $pdox->get();
	
?>