-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnuevoController.php
executable file
·49 lines (43 loc) · 2.06 KB
/
nuevoController.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
$cuenta = (!isset($_POST['txtCuenta']))?'':$_POST['txtCuenta'];
$clave = (!isset($_POST['txtClave']))?'':$_POST['txtClave'];
$nombre = (!isset($_POST['txtNombre']))?'':$_POST['txtNombre'];
$desc = (!isset($_POST['txtDesc']))?'':$_POST['txtDesc'];
include('Usuario.class.php');
$obj = new Usuario();
//Comentar esta condicion y habilitar la condicion de abajo (Seguridad) para evitar ataques SPAN o DDoS
if ($obj->Insertar($cuenta, $clave, $nombre, $desc))
{
echo '<script type="text/javascript">alert("Registrado Correctamente!!!")</script>';
echo "<script type='text/javascript'>window.location.href = 'index.php';</script>";
}
else
{
echo '<script type="text/javascript">alert("Error!!!")</script>';
echo "<script type='text/javascript'>window.location.href = 'nuevo.php';</script>";
}
//Seguridad: Aplicacion de Captcha para evitar SPAN o Ataques DDoS y nos llenen la base de datos con registros basura
/*session_start();
if (md5((!isset($_POST['txtCaptcha'])) ? '' : $_POST['txtCaptcha']) == $_SESSION['codigo_verificacion'])
{
if ($obj->Insertar($cuenta, $clave, $nombre, $desc))
{
echo '<script type="text/javascript">alert("Registrado Correctamente!!!")</script>';
echo "<script type='text/javascript'>window.location.href = 'index.php';</script>";
}
else
{
echo '<script type="text/javascript">alert("Error!!!")</script>';
echo "<script type='text/javascript'>window.location.href = 'nuevo.php';</script>";
}
}
else
{
echo '<script type="text/javascript">alert("Error!!! el código de seguridad no coinciden")</script>';
echo "<script type='text/javascript'>window.location.href = 'nuevo.php';</script>";
}*/