Просмотр файла blackgbs/postadminpage.php

Размер файла: 434B
  1. <?php
  2. include "config.php";
  3. if ($pass==$admin_pass)
  4. {
  5. $passadmin=$_POST['passadmin'];
  6. $mysite=$_POST['mysite'];
  7. $msg=$_POST['msg'];
  8. $zag=$_POST['zag'];
  9. $cop=$_POST['cop'];
  10. $file = fopen("./admin/config.dat","w");
  11. fputs($file,"$passadmin\r\n$mysite\r\n$msg\r\n$zag\r\n$cop\r\n");
  12. fclose($file);
  13. }
  14. $site='http://'.$_SERVER['HTTP_HOST'].''.str_replace('postadminpage.php','index.php',$_SERVER['PHP_SELF']);
  15. header ("Location: $site");
  16. ?>