Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <meta charset="UTF-8">
- <link rel="stylesheet" type="text/css" href="style.css">
- </head>
- <body>
- <div id=box>
- <div id=header>
- OPERACJE PLIKOWE
- </div>
- <div id=maine>
- <iframe name=mm height=100%; width=100% border=0px;>
- </iframe>
- </div>
- <div id=menu>
- Menu:
- <ul>
- <li>
- <a href=zapis.php target=mm> Zapis do pliku </a>
- </li>
- <li><a href=odczyt.php target=mm> odczyt z pliku </a></li>
- </div>
- <div id=footer>
- Wykonał: Andrzej Duda
- </div>
- </div>
- <?php
- ?>
- </body>
- </html>
- ////////////////////////////////////////////////
- <html>
- <head> <meta charset="UTF-8"> </head>
- <form method="GET" action="zapis.php">
- <body>
- <p>A
- <input type="text" name="jeden">
- </p><br>
- <input name="zapis" type="submit" value="zapis"><br><br>
- </form>
- </body>
- </html>
- <?php
- error_reporting(0);
- $dane = $_GET['jeden'];
- $file = "pliki.txt";
- $fp = fopen($file, "a");
- flock($fp, 2);
- fwrite($fp, $dane ."<br>");
- flock($fp, 3);
- fclose($fp);
- ?>
- //////////////////////////////////////////////////
- <html>
- <head> <meta charset="UTF-8"> </head>
- <form method="POST" action="odczyt.php">
- <body>
- </body>
- </html>
- <?php
- $plik = fopen('pliki.txt','r');
- $zawartosc = fread($plik, 8000);
- echo $zawartosc;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement