beispiel.php

<?php
 foreach($_POST as $x => $y){
  $$x = trim($y);
  echo $x.' -- '.$y.'<br>';
 }
?>
    

Kopieren