Editacia suboru
Editacia suboru
cawte lidi mohli by ste mi napisat aka funkcia sa pouziva na editaciu? napriklad .txt subory...
-
vivaSlovakia
Guru wannabe
- Príspevky: 2119
- Registrovaný: 29 júl 2006, 10:30
file_get_contents($file);
http://sk.php.net/manual/en/function.fi ... ntents.php
file_put_contents($file, $data);
http://sk.php.net/manual/en/function.fi ... ntents.php
http://sk.php.net/manual/en/function.fi ... ntents.php
file_put_contents($file, $data);
http://sk.php.net/manual/en/function.fi ... ntents.php
Okey taketo daco mi stoho vzniklo a teraz by som sa chcel spitat ze ako abo co stim mam spravit abi to zapisovalo ja nwm napr na 1 riadok a stvra medzera myslim tim napr ze mas a stiri medzery od toho takto
a text?
Kód: Vybrať všetko
<?php
// Create a stream
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
$person = $_POST['cmd'];
// Add content to the file using the HTTP headers set above
file_put_contents('people.txt', $person, NULL, $context);
?>
<center><form action="" method="post">
<textarea name="cmd" cols="7" rows="1"></textarea>
<input type="submit" value="Odoslat">
</form></center>
-
vivaSlovakia
Guru wannabe
- Príspevky: 2119
- Registrovaný: 29 júl 2006, 10:30