Jump to content

ilyautkin

Newbie
  • Posts

    2
  • Joined

  • Last visited

Everything posted by ilyautkin

  1. А если так: http://jsfiddle.net/Zrv4u/1/
  2. Попробуйте такой код: <?php $login = $_POST['login']; $pass = $_POST['pass']; $email = $_POST['email']; $message = "Вы успешно зарегистрировались на sitename! Ваш логин: $login Ваш пароль: $pass Ваш e-mail: $email"; $file = "register.txt"; $h = fopen($file,"w+"); fwrite($h, $message); fclose($h); header('Content-Description: File Transfer'); header('Content-Type: text/plain'); header('Content-Disposition: attachment; filename=' . basename($file)); header('Content-Transfer-Encoding: binary'); header('Expires: 0'); header('Cache-Control: must-revalidate'); header('Pragma: public'); header('Content-Length: ' . filesize($file)); readfile($file); unlink($file); exit;
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy