Que tal amigos, estoy creando un pequeño script para manejar usuarios.
Resulta que tengo unas pequeñas tablas que tengo relacionadas con la tabla principal que es "usuarios".
El punto es que al ejecutar mi script, me inserta dos veces el mismo usuario.
Al hacer "echo" en las funciones no se duplica la consulta, es sumamente extraño puesto que en el phpmyadmin no sucede esto, unicamente con mi script.
Dejo a continuacion mi codigo:
Código PHP:
Ver originalfunction ar($a, $d = true){ // funcion unicamente depurativa
if($d){
echo '<pre>';
echo '</pre>';
}else{
echo '<pre>';
echo '</pre>';
}
}
function SecureData($data){//saneando los datos que se insertaran
global $conn;
foreach($data as $key=>$val){
}else{
$data[$key] = SecureData($data[$key]);
}
}
}else{
}
return $data;
}
//---->
function comillas($data, $s = "'"){// Envuelve con un caracter el string
foreach($data as $key=>$val){
$data[$key] = $s.$data[$key].$s;
}else{
$data[$key] = comillas($data[$key]);
}
}
}else{
$data = $s.$data.$s;
}
return $data;
}
//---->
function error_mysql($conn = ''){// Evalua y returna un error en la consulta si la hay
return "<pre>Errror en la consulta \n \t".mysqli_error($conn)."</pre>"; }
return false;
}
//---->
function updateTable($data = null){ // inserta, actualiza o elimina una fila de cierta tabla
global $conn;
$data = SecureData( $data );
if( $data["action"] == "new" && !empty( $data["table"] ) ){
$values = implode(", ", comillas
($data["values"]) ); $s = "INSERT INTO `". $data["table"]."`(". $rows .") VALUES(". $values .");";
// echo $s.'<br>'; return true;
if( !$q ){
echo error_mysql( $conn );
return false;
}
}else if( $data["action"] == "delete" && !empty($data["id"]) ){
return mysqli_query($conn, "DELETE FROM `". $data["table"] ."` WHERE id='". $data["id"] ."'");
}else if( $data["action"] == "update" && !empty($data["table"]) && !empty($data["values"]) ){
$t[] = "`".$v."` = '" . $data["values"][$v] . "'";
}
$s = "UPDATE `". $data["table"] ."` SET ". $t ." WHERE id = '". $data["id"] ."'";
echo $s; return false;
}else{
return false;
}
}
// -->
function register_user($data = null){ // registra al usuario
global $conn;
$data = SecureData($data);
$privacidad = updateTable
( array("table"=> "privacidad", "action" => "new", "values" => array("busqueda" =>"publico", "visible" => "publico") ) ); if( !$privacidad ){ return false; }
$ubicacion = updateTable
( array("table"=> "ubicacion", "action" => "new", "values" => array("pais" =>0, "estado" => 0, "municipio" => 0) ) ); if( !$ubicacion){
updateTable
( array("table"=> "privacidad", "id" => $privacidad, "action" => "delete" ) ); }
$tour = updateTable
( array("table"=> "tour", "action" => "new", "values" => array("foto" =>0, "verificado" => 0, "emailverificado" => 0) ) ); if( !$tour){
updateTable
( array("table"=> "privacidad", "id" => $privacidad, "action" => "delete" ) ); updateTable
( array("table"=> "ubicacion", "id" => $ubicacion, "action" => "delete" ) ); return false;
}
$premium = updateTable(
array("table"=> "premium", "action" => "new", "values" => array("mensajes" =>0, "fotografias" => 0, "eventos" => 0, "reputacion" =>0, "busqueda" =>0, "visitas" => 0) ) ); if( !$premium){
updateTable
( array("table"=> "privacidad", "id" => $privacidad, "action" => "delete" ) ); updateTable
( array("table"=> "ubicacion", "id" => $ubicacion, "action" => "delete" ) ); updateTable
( array("table"=> "tour", "id" => $tour, "action" => "delete" ) ); return false;
}
$new = updateTable
(array( "action" => "new",
"table" => "usuarios",
"nick" => $data["nick"],
"email" => $data["email"] ,
"password" => $data["password"] ,
"usertype" => $data["usertype"] ,
"avatar" => 0 ,
"status" => 1 ,
"privacidad" => $privacidad ,
"ubicacion" => $ubicacion ,
"tour" => $tour ,
"premium" => $premium ,
"picpoints" => 0
)
)
);
if( !$new ){
echo $error;
updateTable
( array("table"=> "privacidad", "id" => $privacidad, "action" => "delete" ) ); updateTable
( array("table"=> "ubicacion", "id" => $ubicacion, "action" => "delete" ) ); updateTable
( array("table"=> "tour", "id" => $tour, "action" => "delete" ) ); updateTable
( array("table"=> "premium", "id" => $premium, "action" => "delete" ) ); return false;
}
}/*$s = "select * from usuarios
left join tour on usuarios.tour = tour.id
left join premium on usuarios.premium = premium.id
left join ubicacion on usuarios.ubicacion = ubicacion.id
left join privacidad on usuarios.privacidad = privacidad.id
where usuarios.id = 3";
$q = mysqli_query($conn, $s);
$error = error_mysql( $conn );
if( $error ){
echo $error;
return false;
}
$r = mysqli_fetch_object( $q );
ar( $r );*/
//---->
$conn = mysqli_connect(SDB
, UDB
, PDB
, DB
);// conexion a la base de datos if (!$conn) {
}
$register = register_user
(array('nick'=>'admin', 'email'=>'[email protected]', 'password'=>'asdasd', 'usertype'=>'user')); ar( $register );
aqui la estructura de las tablas que utilizo::
Código MySQL:
Ver original
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `privacidad`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `tour`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `ubicacion`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `usuarios`
--
[/CODE]