Advertisement
tei123

zadanie

Nov 25th, 2016
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <link rel="stylesheet" type="text/css" href="style.css">
  5. </head>
  6.  
  7. <body>
  8. <div id=box>
  9. <div id=header>
  10. OPERACJE PLIKOWE
  11. </div>
  12. <div id=maine>
  13. <iframe name=mm height=100%; width=100% border=0px;>
  14. </iframe>
  15.  
  16. </div>
  17.  
  18. <div id=menu>
  19. Menu:
  20. <ul>
  21. <li>
  22. <a href=zapis.php target=mm> Zapis do pliku </a>
  23. </li>
  24. <li><a href=odczyt.php target=mm> odczyt z pliku </a></li>
  25.  
  26. </div>
  27.  
  28. <div id=footer>
  29. Wykonał: Andrzej Duda
  30. </div>
  31. </div>
  32. <?php
  33.  
  34. ?>
  35.  
  36. </body>
  37. </html>
  38.  
  39.  
  40.  
  41.  
  42. ////////////////////////////////////////////////
  43.  
  44.  
  45.  
  46.  
  47. <html>
  48. <head> <meta charset="UTF-8"> </head>
  49. <form method="GET" action="zapis.php">
  50. <body>
  51. <p>A
  52. <input type="text" name="jeden">
  53.  
  54. </p><br>
  55. <input name="zapis" type="submit" value="zapis"><br><br>
  56.  
  57. </form>
  58.  
  59.  
  60. </body>
  61. </html>
  62.  
  63. <?php
  64. error_reporting(0);
  65. $dane = $_GET['jeden'];
  66.  
  67.  
  68. $file = "pliki.txt";
  69.  
  70. $fp = fopen($file, "a");
  71.  
  72. flock($fp, 2);
  73.  
  74. fwrite($fp, $dane ."<br>");
  75.  
  76. flock($fp, 3);
  77.  
  78. fclose($fp);
  79.  
  80.  
  81.  
  82. ?>
  83.  
  84.  
  85.  
  86.  
  87. //////////////////////////////////////////////////
  88.  
  89.  
  90. <html>
  91. <head> <meta charset="UTF-8"> </head>
  92. <form method="POST" action="odczyt.php">
  93. <body>
  94.  
  95.  
  96. </body>
  97. </html>
  98.  
  99. <?php
  100. $plik = fopen('pliki.txt','r');
  101.  
  102. $zawartosc = fread($plik, 8000);
  103.  
  104. echo $zawartosc;
  105.  
  106.  
  107. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement