File "pipo.php"

Full Path: /home/analogde/www/Opamps/Upload_code/Transfert/pipo.php
File size: 304 bytes
MIME-type: text/x-php
Charset: utf-8

<?php 
 
       $un   = urldecode($_POST['key1']);
       $deux   = urldecode($_POST['key2']);
        
       print " ==== POST DATA =====
       Name  : $un
       Email : $deux"; 
	   
	   $file = fopen("site.txt", "a+");
	   fputs($file, 'blabla');
	   fputs($file, "\n");
	   fclose($file);
	   
 ?>