delickate Posted May 19, 2008 Share Posted May 19, 2008 Hi, I need to validate my feilds one by one. on textbox leave. can any one help me? Link to comment https://forums.phpfreaks.com/topic/106284-help-in-form-feild-validation-plz/ Share on other sites More sharing options...
oopster Posted May 19, 2008 Share Posted May 19, 2008 Hello All fields ? <?php foreach ($_POST as $key=>$value) { $_POST[$key] = mysql_real_escape_string(htmlspecialchars($value)); } ?> Will try to clean up all post values, it is not the best solution. If you want to validete the lenght and etc things, then you have to do it a differently. Link to comment https://forums.phpfreaks.com/topic/106284-help-in-form-feild-validation-plz/#findComment-544683 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.