Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Percorrendo as variáveis ​​$_POST


UPD: Por favor, use o conselho de Mike. É muito melhor ter dados mais estruturados no POST.
foreach($_POST as $key => $val) {
  if(strpos($key, 'submit_edit_category_') === 0 ) {
    print $key.' => '.$val.'\r\n';
    print substr($key, 21 /* or 22... or 23... try yourself */ );
  }
}