PMA\libraries\config\FormDisplay::_fillPostArrayParameters PHP Method

_fillPostArrayParameters() private method

Copy items of an array to $_POST variable
private _fillPostArrayParameters ( array $post_values, string $key ) : void
$post_values array List of parameters
$key string Array key
return void
    private function _fillPostArrayParameters($post_values, $key)
    {
        foreach ($post_values as $v) {
            $v = Util::requestString($v);
            if ($v !== '') {
                $_POST[$key][] = $v;
            }
        }
    }