forked from qwerty/tupali
Remplazos masivos para migrar a mysqli
This commit is contained in:
parent
4b8c4ccf1f
commit
858d7f8bd9
@ -37,7 +37,7 @@ function brigadistas_grabar($formulario) {
|
||||
|
||||
include_once("librerias/conex.php");
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
|
||||
foreach($formulario as $campo=>$valor){
|
||||
if(is_array($valor)) {
|
||||
@ -45,7 +45,7 @@ function brigadistas_grabar($formulario) {
|
||||
$consulta = "INSERT INTO form_datos ( timestamp,id_usuario,id_empresa,form_id,ip,control,id_campo,contenido) VALUES
|
||||
( UNIX_TIMESTAMP(),'$_SESSION[id]','$id_empresa','$id_formulario','$ip' ,'$control', '$campo' , '".mysql_real_escape_string( $v )."')
|
||||
";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
|
||||
// $campos .= " $campo // $valor // $c -> $v $consulta <br>";
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ function brigadistas_grabar($formulario) {
|
||||
include_once("$_SESSION[path]/funciones/conex.php");
|
||||
//include_once("$_SESSION[url]funciones/conex.php");
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
$ip = obtener_ip();
|
||||
$ip = " INET_ATON('".$ip."') ";
|
||||
foreach($_POST as $campo=>$valor){
|
||||
@ -55,7 +55,7 @@ function brigadistas_grabar($formulario) {
|
||||
$consulta = "INSERT INTO form_datos ( timestamp,id_usuario,id_empresa,form_id,ip,control,id_campo,contenido) VALUES
|
||||
( UNIX_TIMESTAMP(),'$_SESSION[id]','$id_empresa','$id_formulario','$ip' ,'$control', '$campo' , '$v')
|
||||
";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
// $campos .= " $campo // $valor // $c -> $v $consulta <br>";
|
||||
}
|
||||
}
|
||||
@ -71,11 +71,11 @@ $resultado = "$preview $consulta ";
|
||||
function remplacetas($tabla,$campo,$valor,$por,$and){
|
||||
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
if(@$and !=''){$AND = "AND $and";}else{$AND ="";}
|
||||
//$consulta = "SELECT * , md5(binary $por ) as md5_".$por." FROM $tabla WHERE $campo = '$valor' $AND order by $campo DESC limit 1";
|
||||
$consulta = "SELECT * , md5(binary $por ) as md5_".$por." FROM $tabla WHERE $campo = '$valor' $AND order by id DESC limit 1";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
if (@mysql_num_rows($sql)!=0){
|
||||
$resultado[] = mysql_result($sql,0,$por);
|
||||
$resultado[] = mysql_result($sql,0,'id');
|
||||
@ -132,8 +132,8 @@ $consulta ="SELECT form_campos.id, form_campos.campo_nombre FROM form_tipo_campo
|
||||
AND form_tipo_campo.id_tipo_campo = '$tipo'
|
||||
AND form_contenido_campos.id_form = '$id'";
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
$sql=mysql_query($consulta,$link);
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
if (mysql_num_rows($sql)!='0'){
|
||||
$resultado[0]=mysql_result($sql,0,"id");
|
||||
$resultado[1]=mysql_result($sql,0,"campo_nombre");
|
||||
|
@ -56,7 +56,7 @@ function brigadistas_grabar($formulario) {
|
||||
|
||||
include_once("librerias/conex.php");
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
|
||||
foreach($formulario as $campo=>$valor){
|
||||
if(is_array($valor)) {
|
||||
@ -64,7 +64,7 @@ function brigadistas_grabar($formulario) {
|
||||
$consulta = "INSERT INTO form_datos ( timestamp,id_usuario,id_empresa,form_id,ip,control,id_campo,contenido) VALUES
|
||||
( UNIX_TIMESTAMP(),'$_SESSION[id]','$id_empresa','$id_formulario','$ip' ,'$control', '$campo' , '$v')
|
||||
";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
// $campos .= " $campo // $valor // $c -> $v $consulta <br>";
|
||||
}
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ function brigadistas_grabar($formulario) {
|
||||
|
||||
include_once("librerias/conex.php");
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
|
||||
foreach($formulario as $campo=>$valor){
|
||||
if(is_array($valor)) {
|
||||
@ -45,7 +45,7 @@ function brigadistas_grabar($formulario) {
|
||||
$consulta = "INSERT INTO form_datos ( timestamp,id_usuario,id_empresa,form_id,ip,control,id_campo,contenido) VALUES
|
||||
( UNIX_TIMESTAMP(),'$_SESSION[id]','$id_empresa','$id_formulario','$ip' ,'$control', '$campo' , '".mysql_real_escape_string( $v )."')
|
||||
";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
|
||||
// $campos .= " $campo // $valor // $c -> $v $consulta <br>";
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ function brigadistas_grabar($formulario) {
|
||||
include_once("$_SESSION[path]/funciones/conex.php");
|
||||
//include_once("$_SESSION[url]funciones/conex.php");
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
$ip = obtener_ip();
|
||||
$ip = " INET_ATON('".$ip."') ";
|
||||
foreach($_POST as $campo=>$valor){
|
||||
@ -55,7 +55,7 @@ function brigadistas_grabar($formulario) {
|
||||
$consulta = "INSERT INTO form_datos ( timestamp,id_usuario,id_empresa,form_id,ip,control,id_campo,contenido) VALUES
|
||||
( UNIX_TIMESTAMP(),'$_SESSION[id]','$id_empresa','$id_formulario','$ip' ,'$control', '$campo' , '$v')
|
||||
";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
// $campos .= " $campo // $valor // $c -> $v $consulta <br>";
|
||||
}
|
||||
}
|
||||
@ -71,11 +71,11 @@ $resultado = "$preview $consulta ";
|
||||
function remplacetas($tabla,$campo,$valor,$por,$and){
|
||||
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
if(@$and !=''){$AND = "AND $and";}else{$AND ="";}
|
||||
//$consulta = "SELECT * , md5(binary $por ) as md5_".$por." FROM $tabla WHERE $campo = '$valor' $AND order by $campo DESC limit 1";
|
||||
$consulta = "SELECT * , md5(binary $por ) as md5_".$por." FROM $tabla WHERE $campo = '$valor' $AND order by id DESC limit 1";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
if (@mysql_num_rows($sql)!=0){
|
||||
$resultado[] = mysql_result($sql,0,$por);
|
||||
$resultado[] = mysql_result($sql,0,'id');
|
||||
@ -132,8 +132,8 @@ $consulta ="SELECT form_campos.id, form_campos.campo_nombre FROM form_tipo_campo
|
||||
AND form_tipo_campo.id_tipo_campo = '$tipo'
|
||||
AND form_contenido_campos.id_form = '$id'";
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
$sql=mysql_query($consulta,$link);
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
if (mysql_num_rows($sql)!='0'){
|
||||
$resultado[0]=mysql_result($sql,0,"id");
|
||||
$resultado[1]=mysql_result($sql,0,"campo_nombre");
|
||||
|
@ -56,7 +56,7 @@ function machitroll_grabar($formulario) {
|
||||
|
||||
include_once("librerias/conex.php");
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
|
||||
foreach($formulario as $campo=>$valor){
|
||||
if(is_array($valor)) {
|
||||
@ -64,7 +64,7 @@ function machitroll_grabar($formulario) {
|
||||
$consulta = "INSERT INTO form_datos ( timestamp,id_usuario,id_empresa,form_id,ip,control,id_campo,contenido) VALUES
|
||||
( UNIX_TIMESTAMP(),'$_SESSION[id]','$id_empresa','$id_formulario','$ip' ,'$control', '$campo' , '$v')
|
||||
";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
// $campos .= " $campo // $valor // $c -> $v $consulta <br>";
|
||||
}
|
||||
}
|
||||
@ -95,7 +95,7 @@ function machitroll_grabarX($formulario) {
|
||||
|
||||
include_once("librerias/conex.php");
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
/*
|
||||
foreach($formulario as $c=>$v){
|
||||
$campo .= "( $c : $v )<br> ";
|
||||
@ -124,7 +124,7 @@ $form_id= $formulario['formulario_id'];
|
||||
$consulta = "INSERT INTO form_datos ( timestamp,id_usuario,id_empresa,form_id,ip,control,id_campo,contenido) VALUES
|
||||
( UNIX_TIMESTAMP(),'$_SESSION[id]','$_SESSION[id_empresa]','$form_id','$ip' ,'$control', '$campo' , '$v')
|
||||
";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
|
||||
$filas .= "<li> $C - $V - $c - $v ///$campo -> $V $consulta $debug </li>";
|
||||
|
||||
|
@ -1 +1 @@
|
||||
[18-Oct-2014 15:57:24 America/Chicago] PHP Warning: mysql_connect(): Access denied for user 'root'@'localhost' (using password: YES) in /home/iiqwebgd/public_html/milfs/css/estilos.php on line 45
|
||||
[18-Oct-2014 15:57:24 America/Chicago] PHP Warning: mysqli_connect(): Access denied for user 'root'@'localhost' (using password: YES) in /home/iiqwebgd/public_html/milfs/css/estilos.php on line 45
|
||||
|
@ -5,9 +5,9 @@ echo dibuja_clase();
|
||||
function dibuja_clase(){
|
||||
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
$consulta = "SELECT elemento FROM estilos GROUP BY elemento";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
|
||||
|
||||
if (mysql_num_rows($sql)!='0'){
|
||||
@ -26,9 +26,9 @@ return;
|
||||
|
||||
function dibuja_elemento($elemento){
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
$consulta = "SELECT * FROM estilos WHERE elemento = '$elemento' ";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
if (mysql_num_rows($sql)!='0'){
|
||||
while( $row = mysql_fetch_array( $sql ) ) {
|
||||
if($row[color] !=='') {$color = "$row[color]";}else{$color="";}
|
||||
@ -53,7 +53,7 @@ function Conectarse(){
|
||||
echo "Error conectando a la base de datos.";
|
||||
exit();
|
||||
}
|
||||
/* if (!mysql_select_db($db,$link))
|
||||
/* if (!mysqli_select_db($db,$link))
|
||||
{
|
||||
echo "Error seleccionando la base de datos.";
|
||||
exit();
|
||||
|
13152
milfs/funciones.php
Normal file
13152
milfs/funciones.php
Normal file
File diff suppressed because it is too large
Load Diff
@ -12,7 +12,7 @@ function Conectarse(){
|
||||
echo "Error conectando a la base de datos.";
|
||||
exit();
|
||||
}
|
||||
/* if (!mysql_select_db($db,$link))
|
||||
/* if (!mysqli_select_db($db,$link))
|
||||
{
|
||||
echo "Error seleccionando la base de datos.";
|
||||
exit();
|
||||
|
@ -12,7 +12,7 @@ function Conectarse(){
|
||||
echo "Error conectando a la base de datos.";
|
||||
exit();
|
||||
}
|
||||
if (!mysql_select_db($db,$link))
|
||||
if (!mysqli_select_db($db,$link))
|
||||
{
|
||||
echo "Error seleccionando la base de datos.";
|
||||
exit();
|
||||
|
@ -124,8 +124,8 @@ return $resultado;
|
||||
if($id_form !="") {$w_form ="form_id = '$id_form' AND ";}
|
||||
$consulta ="SELECT * FROM form_datos WHERE $w_form contenido like '%%$valor%%' group by control LIMIT 200 ";
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
$sql=mysql_query($consulta,$link);
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
if (mysql_num_rows($sql)!=0){
|
||||
mysql_data_seek($sql, 0);
|
||||
$fila=1;
|
||||
@ -188,11 +188,11 @@ if($filtro !='' ){$w_filtro =" AND id_campo = '$filtro' AND md5(binary contenido
|
||||
$consulta_total= "SELECT * FROM form_datos WHERE form_id= '$id_form' $w_filtro GROUP BY control ";
|
||||
$consulta= "SELECT * FROM form_datos WHERE form_id= '$id_form' $w_filtro GROUP BY control LIMIT $inicio , $limite";
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
//mysql_real_escape_string($consulta);
|
||||
$sql_total=mysql_query($consulta_total,$link);
|
||||
$sql_total=mysqli_query($consulta_total,$link);
|
||||
$total = mysql_num_rows($sql_total);
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
$descripcion = remplacetas('form_id','id',$id_form,'descripcion',"") ;
|
||||
$descripcion = " $descripcion[0]";
|
||||
$buscador = buscar_datos("","$id_form","$plantilla","grid_resultado");
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -177,7 +177,7 @@ $consulta= "SELECT *
|
||||
AND $tabla_autenticacion.id_grupo = usuarios_grupo.id
|
||||
LIMIT 1";
|
||||
|
||||
$sql=mysql_query($link,$consulta);
|
||||
$sql=mysqli_query($link,$consulta);
|
||||
if (mysqli_num_rows($sql)!='0'){
|
||||
if(mysqli_result($sql,0,"status") === '0' ) {
|
||||
$resultado = "
|
||||
@ -299,7 +299,7 @@ $link=Conectarse();
|
||||
mysqli_set_charset($link, "utf8");
|
||||
$nueva_firma = sha1(mktime());
|
||||
$consulta = "UPDATE usuarios SET passwd = '".MD5($nuevo)."' , firma_recuperacion = '$nueva_firma' WHERE id = $id_usuario;";
|
||||
$sql_consulta=mysql_query($link,$consulta);
|
||||
$sql_consulta=mysqli_query($link,$consulta);
|
||||
if($sql_consulta) {
|
||||
$resultado = "<div class='alert alert-success'>La clave se cambió con éxito.</div>";
|
||||
}else{$resultado= "";}
|
||||
|
@ -39,10 +39,10 @@ $link=Conectarse();
|
||||
|
||||
//echo $consulta;
|
||||
|
||||
mysql_query("SET NAMES 'UTF8'");
|
||||
mysqli_query("SET NAMES 'UTF8'");
|
||||
|
||||
|
||||
$sql = mysql_query($consulta,$link) or die("error al ejecutar consulta $consulta ");
|
||||
$sql = mysqli_query($consulta,$link) or die("error al ejecutar consulta $consulta ");
|
||||
if (mysql_num_rows($sql)!='0'){
|
||||
$id = 1;
|
||||
$features = array();
|
||||
|
@ -24,10 +24,10 @@ $link=Conectarse();
|
||||
group by control
|
||||
ORDER BY orden desc";
|
||||
|
||||
mysql_query("SET NAMES 'UTF8'");
|
||||
mysqli_query("SET NAMES 'UTF8'");
|
||||
|
||||
|
||||
$sql = mysql_query($consulta,$link) or die("error al ejecutar consulta ");
|
||||
$sql = mysqli_query($consulta,$link) or die("error al ejecutar consulta ");
|
||||
if (mysql_num_rows($sql)!='0'){
|
||||
$id = 1;
|
||||
$features = array();
|
||||
|
@ -34,10 +34,10 @@ if($busqueda !=''){$busca ="AND contenido LIKE '$busqueda'";}Else{$busca ='';}
|
||||
|
||||
//echo $consulta;
|
||||
|
||||
mysql_query("SET NAMES 'UTF-8'");
|
||||
mysqli_query("SET NAMES 'UTF-8'");
|
||||
|
||||
|
||||
$resultado = mysql_query($consulta,$link) or die("error al ejecutar consulta $consulta ");
|
||||
$resultado = mysqli_query($consulta,$link) or die("error al ejecutar consulta $consulta ");
|
||||
$fecha = time ();
|
||||
$fecha=date ( "D, d M Y" , $fecha );
|
||||
|
||||
@ -85,12 +85,12 @@ function Conectarse(){
|
||||
// include("escritorio/includes/datos.php");
|
||||
}
|
||||
|
||||
if (!($link=mysql_connect($servidor,$usuario,$password)))
|
||||
if (!($link=mysqli_connect($servidor,$usuario,$password)))
|
||||
{
|
||||
echo "Error conectando a la base de datos.";
|
||||
exit();
|
||||
}
|
||||
if (!mysql_select_db($db,$link))
|
||||
if (!mysqli_select_db($db,$link))
|
||||
{
|
||||
echo "Error seleccionando la base de datos.";
|
||||
exit();
|
||||
@ -115,11 +115,11 @@ function mysql_seguridad($inp) {
|
||||
function remplacetas($tabla,$campo,$valor,$por,$and){
|
||||
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
if($and !=''){$AND = "AND $and";}
|
||||
$consulta = "SELECT * FROM $tabla
|
||||
WHERE $campo = '$valor' $AND order by id DESC limit 1";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
if (mysql_num_rows($sql)!='0'){
|
||||
$resultado[] = mysql_result($sql,0,$por);
|
||||
$resultado[] = mysql_result($sql,0,id);
|
||||
|
@ -43,10 +43,10 @@ if($busqueda !=''){$busca ="AND contenido LIKE '$busqueda'";}Else{$busca ='';}
|
||||
|
||||
//echo $consulta;
|
||||
|
||||
mysql_query("SET NAMES 'UTF-8'");
|
||||
mysqli_query("SET NAMES 'UTF-8'");
|
||||
|
||||
|
||||
$resultado = mysql_query($consulta,$link) or die("error al ejecutar consulta ");
|
||||
$resultado = mysqli_query($consulta,$link) or die("error al ejecutar consulta ");
|
||||
$fecha = time ();
|
||||
$fecha=date ( "D, d M Y" , $fecha );
|
||||
|
||||
@ -101,12 +101,12 @@ function Conectarse(){
|
||||
// include("escritorio/includes/datos.php");
|
||||
}
|
||||
|
||||
if (!($link=mysql_connect($servidor,$usuario,$password)))
|
||||
if (!($link=mysqli_connect($servidor,$usuario,$password)))
|
||||
{
|
||||
echo "Error conectando a la base de datos.";
|
||||
exit();
|
||||
}
|
||||
if (!mysql_select_db($db,$link))
|
||||
if (!mysqli_select_db($db,$link))
|
||||
{
|
||||
echo "Error seleccionando la base de datos.";
|
||||
exit();
|
||||
@ -131,11 +131,11 @@ function mysql_seguridad($inp) {
|
||||
function remplacetas($tabla,$campo,$valor,$por,$and){
|
||||
|
||||
$link=Conectarse();
|
||||
mysql_query("SET NAMES 'utf8'");
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
if($and !=''){$AND = "AND $and";}
|
||||
$consulta = "SELECT * FROM $tabla
|
||||
WHERE $campo = '$valor' $AND order by id DESC limit 1";
|
||||
$sql=mysql_query($consulta,$link);
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
if (mysql_num_rows($sql)!='0'){
|
||||
$resultado[] = mysql_result($sql,0,$por);
|
||||
$resultado[] = mysql_result($sql,0,id);
|
||||
|
Loading…
Reference in New Issue
Block a user