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();
?>
<?php
require_once("fasdab.mysql.php");
$db = new Fasdab("localhost", "username", "password", "database");
# Starting a new transaction:
$db->begin();
# Committing the transaction:
$db->commit();
?>