Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Last active March 22, 2023 03:18
Show Gist options
  • Save fayqLs/5969273527ac5cca70e13033b5c84087 to your computer and use it in GitHub Desktop.
Save fayqLs/5969273527ac5cca70e13033b5c84087 to your computer and use it in GitHub Desktop.
ABRIR CONEXÃO COM O BANCO DE DADOS
<?php
Transaction::open(self::$database); # ABRE A CONEXÃO
$id = 1;
$cliente = Cliente::find($id);
if ($cliente) { echo "Cliente: {$cliente->nome}"; }
TTransaction::close(); # FECHA A CONEXÃO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment