本文整理汇总了PHP中Acceso::Registro方法的典型用法代码示例。如果您正苦于以下问题:PHP Acceso::Registro方法的具体用法?PHP Acceso::Registro怎么用?PHP Acceso::Registro使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Acceso
的用法示例。
在下文中一共展示了Acceso::Registro方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: header
header('location: index.php');
}
break;
case 'usuarios':
$bd = new Conexion();
$dato = $bd->consulta("select * from usuario_table");
$template = new Smarty(1);
$template->assign(array('resultado' => $dato));
$template->display('public/usuarios.tpl');
break;
case 'registro':
if (isset($_POST['registro'])) {
if (!empty($_POST['nombre']) and !empty($_POST['apellido']) and !empty($_POST['email']) and !empty($_POST['pass'])) {
include 'includes/class.Acceso.php';
$registro = new Acceso($_POST['nombre'], $_POST['apellido'], $_POST['email'], $_POST['pass'], null);
$url = $registro->Registro();
if ($url == "public/usuarios.tpl") {
$bd = new Conexion();
$dato = $bd->consulta("select * from usuario_table");
$template = new Smarty(1);
$template->assign(array('resultado' => $dato));
$template->display('public/usuarios.tpl');
}
} else {
header('location: index.php?modo=registro&error=campos_vacios');
}
} else {
if (isset($_GET['error']) and $_GET['error'] == 'campos_vacios') {
$template = new Smarty(1);
$template->assign(array('error' => 'ERROR: Debes llenar todos los campos para poder registrarte'));
$template->display('public/registro.tpl');
示例2: Acceso
if (isset($_POST['login'])) {
if (!empty($_POST['user']) and !empty($_POST['pass'])) {
include 'includes/class.Acceso.php';
$login = new Acceso($_POST['user'], $_POST['pass'], '');
$login->Login();
} else {
header('location: index.php');
}
}
break;
case 'registro':
if (isset($_POST['registro'])) {
if (!empty($_POST['user']) and !empty($_POST['pass']) and !empty($_POST['email'])) {
include 'includes/class.Acceso.php';
$registro = new Acceso($_POST['user'], $_POST['pass'], $_POST['email']);
$registro->Registro();
} else {
echo "campos vacios";
}
} else {
include 'registro.php';
}
break;
case 'usuario':
header('location: index.php?ruta=usuarios');
break;
default:
include 'login.php';
break;
}
?>