upload.php 388 B

12345678910111213141516
  1. <?php
  2. header ( 'Content-type: text/plain');
  3. echo "
  4. Now see here, you will see the output of the param most
  5. interesting to PHP. \$_POST.
  6. Note, that if you cleanHtml(true) it will send multiple
  7. input's (postedimage/[x]), which you can then use to
  8. decode and store.
  9. Otherwise, it will send it all in the single form field.
  10. print_r(\$_POST);
  11. ";
  12. print_r($_POST);