Advertisement
D0cEvil

PHP - Вычитка инфы из некоторых файлов

Sep 19th, 2022
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.40 KB | Software | 0 0
  1. <html>
  2.  <head>
  3.   <meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
  4.   <title>Пользователи Интернет</title>
  5.  </head>
  6.  <body>
  7.  
  8. <?php
  9.  
  10. $fp = fopen('/home/andrew/acl_terminet_rules', 'rt');
  11. echo "<table border = 1>";
  12. if ($fp)
  13.     {
  14.         while (!feof($fp))
  15.         {
  16.    
  17.             $mytext = fgets($fp, 999);
  18.            
  19.  
  20.             list($ip_addr, $username) = explode("#", $mytext);
  21.  
  22.             echo "<tr>";
  23.             echo "<td>".$ip_addr."</td>";
  24.             echo "<td>".$username."</td>";
  25.             echo "</tr>";
  26.         }
  27.     }
  28.  
  29. else echo "Ошибка при открытии файла";
  30. fclose($fp);
  31.  
  32. ?>
  33.  
  34.   <form action="/var/www/html/insert.php">
  35.    <p><input type="button" name="press" value=" Синхронизация с БД "></p>
  36.   </form>
  37.  </body>
  38. </html>
  39.  
  40. ########################################## ФАЙЛ 2 ##########################################
  41.  
  42. <?php
  43.  
  44. $fp = fopen('/home/andrew/acl_terminet_rules', 'rt');
  45. mysql_connect("localhost", "root", "P@ssw0rd") or die (mysql_error ());
  46. mysql_select_db("testdb") or die(mysql_error());
  47.  
  48. if ($fp)
  49.     {
  50.         while (!feof($fp))
  51.         {
  52.    
  53.             $mytext = fgets($fp, 999);
  54.             list($ip_addr, $username) = explode("#", $mytext);
  55.             $strSQL = "INSERT INTO acl_terminet_rules(ip_addr,username) VALUES('$ip_addr','$username')";
  56.             mysql_query($strSQL) or die (mysql_error());
  57.         }
  58.     }
  59.  
  60. else echo "Ошибка при открытии файла";
  61. fclose($fp);
  62.  
  63. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement