F a s d a b
Fast and simple database abstraction
begin

boolean begin(void)

Starts a transaction.

<?php
require_once("fasdab.mysql.php");

$db = new Fasdab("localhost""username""password""database");

# Starting a new transaction:
$db->begin();

# Committing the transaction:
$db->commit();
?>