Lautarox Posted June 10, 2008 Share Posted June 10, 2008 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.. } } } ?> Link to comment https://forums.phpfreaks.com/topic/109614-solved-returning-modified-values-to-_post-var/ Share on other sites More sharing options...
Asheeown Posted June 10, 2008 Share Posted June 10, 2008 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. Link to comment https://forums.phpfreaks.com/topic/109614-solved-returning-modified-values-to-_post-var/#findComment-562305 Share on other sites More sharing options...
Lautarox Posted June 10, 2008 Author Share Posted June 10, 2008 Are you replacing or the $_POST vars there? Link to comment https://forums.phpfreaks.com/topic/109614-solved-returning-modified-values-to-_post-var/#findComment-562665 Share on other sites More sharing options...
trq Posted June 11, 2008 Share Posted June 11, 2008 Instead of.... $value = addslashes(trim($value)); You would simply use.... $_POST[$key] = addslashes(trim($value)); Link to comment https://forums.phpfreaks.com/topic/109614-solved-returning-modified-values-to-_post-var/#findComment-562672 Share on other sites More sharing options...
DarkWater Posted June 11, 2008 Share Posted June 11, 2008 Are you replacing or the $_POST vars there? Yes, you are. Link to comment https://forums.phpfreaks.com/topic/109614-solved-returning-modified-values-to-_post-var/#findComment-562679 Share on other sites More sharing options...
Lautarox Posted June 11, 2008 Author Share Posted June 11, 2008 Thanks, =) Link to comment https://forums.phpfreaks.com/topic/109614-solved-returning-modified-values-to-_post-var/#findComment-562705 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.