Jump to content
  • 0

выпадающий список из txt-файла


Hasol
 Share

Question

6 answers to this question

Recommended Posts

  • 0
чёртова амнезия! я всё забыл!))

Ну можно сделать типа того:

index.php:

<html>
<head>
<title>Запись и добавление в файл</title>
</head>
<body>
<form action="add_data.php" method="post">
<textarea name="content" cols="130" rows="20">
<?php
$fd = fopen("data.txt", "r") or die("Не удалось открыть файл");
$fstring = fread($fd, filesize("data.txt"));
echo $fstring;
fclose($fd);
?>
</textarea>
<p><input type="submit" name="submit" value="Добавить запись"></p>
</form>

</body>
</html>

add_data.php

<?php
if (isset($_POST['submit'])) {
$content = stripslashes($_POST['content']);
$file = "data.txt";
$Saved_File = fopen($file, 'w+');
fwrite($Saved_File, $content);
fclose($Saved_File);
}
header("Location: index.php");
?>

data.txt:

<ul>
<li>один</li>
<li>два</li>
<li>три</li>
</ul>

и в том месте где нужно вывести из текстового файла список:

<?php
include ('data.txt');
?>

Link to comment
Share on other sites

  • 0
Ну можно сделать типа того:

index.php:

<html>
<head>
<title>Запись и добавление в файл</title>
</head>
<body>
<form action="add_data.php" method="post">
<textarea name="content" cols="130" rows="20">
<?php
$fd = fopen("data.txt", "r") or die("Не удалось открыть файл");
$fstring = fread($fd, filesize("data.txt"));
echo $fstring;
fclose($fd);
?>
</textarea>
<p><input type="submit" name="submit" value="Добавить запись"></p>
</form>

</body>
</html>

add_data.php

<?php
if (isset($_POST['submit'])) {
$content = stripslashes($_POST['content']);
$file = "data.txt";
$Saved_File = fopen($file, 'w+');
fwrite($Saved_File, $content);
fclose($Saved_File);
}
header("Location: index.php");
?>

data.txt:

<ul>
<li>один</li>
<li>два</li>
<li>три</li>
</ul>

и в том месте где нужно вывести из текстового файла список:

<?php
include ('data.txt');
?>

благодарю! щас буду сидеть разбираться!

Link to comment
Share on other sites

  • 0
$fd = fopen("data.txt", "r") or die("Не удалось открыть файл");

$fstring = fread($fd, filesize("data.txt"));

fclose($fd);

=== file_get_contents('data.txt');

А у вас flock($fd,LOCK_SH) нету. Вдруг кто чего туда писать вздумает, обнулится нафиг.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy