Jump to content

[SOLVED] Returning modified values to $_POST var


Lautarox

Recommended Posts

Im creating a class that, modifies the $_POST var values correcting ir for using on mysql querys, how can i return all the values modified to the $_POST var again?

 

This is a part of the code i have

 

<?php

class validator {
       function validate ($method, $a_items, $checkblank) {
                if ($method == POST) {
                   foreach ($_POST as $key => $value) {
                           if ($value == "" && $checkblank = true) {
                              echo('Faltan campos por rellenar');
                           }
                           else {
                           $value = addslashes(trim($value));
                           //or mysql_real_escape_string($value);
                           //I have trimmed the values, so i have to give the post var all the values again..
                           }
                   }
                }
?>

if(!function_exists(mysql_real_escape_array))
{
function mysql_real_escape_array($t) {
	return array_map("mysql_real_escape_string",$t);
}
}

$_GET = mysql_real_escape_array($_GET);
$_POST = mysql_real_escape_array($_POST);

 

That is what I use to prevent SQL injection, it's much better with mysql_escape_array

it always gave me problems if I executed this before sql is connected to the DB so put it after you connect to your database but before you execute queries.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.