Quantcast
Channel: PHP filter_require_array is failing - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by tiomno for PHP filter_require_array is failing

If you're filtering float values (prices) I'd recommend to filter those with the flag FILTER_FLAG_ALLOW_FRACTION as FILTER_DEFAULT == FILTER_UNSAFE_RAW and you can end up with an undesired injection in...

View Article



Answer by Joshua Bakker for PHP filter_require_array is failing

Thanks to @bxN5 (PHP filter_require_array is failing):Changing$additions = filter_input(INPUT_POST, 'additions', FILTER_REQUIRE_ARRAY);Into$additions = filter_input(INPUT_POST, 'additions',...

View Article

PHP filter_require_array is failing

I got an AJAX file which can get an array as POST variable. The array looks like this:array('NAME' => PRICE,'NAME2' => PRICE2)For example, here's a var_dump about one possibility:...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images