本文整理匯總了PHP中dao::cerrarConexion方法的典型用法代碼示例。如果您正苦於以下問題:PHP dao::cerrarConexion方法的具體用法?PHP dao::cerrarConexion怎麽用?PHP dao::cerrarConexion使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類dao
的用法示例。
在下文中一共展示了dao::cerrarConexion方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: dao
<?php
require_once '../conf.php';
require_once '../daos/dao.php';
require_once '../daos/daoUsuario.php';
session_start();
$dao = new dao(DB_HOST, DB_USER_CREATOR, DB_PASSWORD_CREATOR, DB_NAME);
$dao->conectar();
$daoUsuario = new daoUsuario($dao);
// $daoUsuario->crearUsuario('admin',$_GET['1234']);
if ($_GET['password'] == $_GET['passwordc']) {
$daoUsuario->insertInfoUsuario($_GET['cedula'], $_GET['nombre'], $_GET['apellido'], $_GET['usuario'], $_GET['password'], $_GET['telefono'], $_GET['email']);
} else {
echo '<script>window.alert("Las contrasenas no coinciden");</script>';
}
$dao->cerrarConexion();
// $_SESSION['db_user'] = $_GET['email'];
// $_SESSION['db_pass'] = $_GET['pass'];
header('Location: ../iniciosesion.php');