当前位置: 首页>>代码示例>>PHP>>正文


PHP Acceso::Registro方法代码示例

本文整理汇总了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');
开发者ID:robertw1905,项目名称:php,代码行数:31,代码来源:index.php

示例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;
}
?>
开发者ID:joseAgudelo,项目名称:proyecto_sm-group,代码行数:31,代码来源:index.php


注:本文中的Acceso::Registro方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。