Hallo,
und wieder, muss ich auf eure Hilfe zurückgreifen.
Ich möchte per FTP auf eine txt Datei zu greifen, und diese ändern und dann nqtürlich wieder dort speichern. In diesem Test, Name und Nachname !
Das habe ich bisher:
so, nutze ich bei fopen $mode "a" oder "a+", dann bekomme ich:
Warning: fopen(ftp://...@IP/ordner/test.txt) [function.fopen]: failed to open stream: FTP does not support simultaneous read/write connections......
was habe ich falsch gemacht.....?
Danke !
und wieder, muss ich auf eure Hilfe zurückgreifen.
Ich möchte per FTP auf eine txt Datei zu greifen, und diese ändern und dann nqtürlich wieder dort speichern. In diesem Test, Name und Nachname !
Das habe ich bisher:
PHP:
<?
/********************************************/
/* Abgeschicktes Formular -> test.txt */
/********************************************/
if (isset($_POST['submit'])) {
$handle = fopen ("ftp://username:password@IP/ordner/test.txt", "a");
$somecontent = $_POST['name']." ".$_POST['nname']."\n";
fputs($handle, $somecontent);
fclose($handle);
}
/**************************************/
/* Formular */
/**************************************/
?>
<html>
<div align="center"><table bgcolor="#272727" style="border: 1px solid #000000;">
<form action="<? echo $_SERVER['PHP_SELF']; ?>" method="post" enctype="multipart/form-data">
<tr>
<td style="border: 1px solid #000000;">Name</td><td bgcolor=#32383c style="border: 1px solid #000000;"><input name="name" type="text"></td>
</tr>
<tr>
<td style="border: 1px solid #000000;">Nachname</td><td bgcolor=#32383c style="border: 1px solid #000000;"><input name="nname" type="text"></td>
</tr>
<tr><td style="border: 1px solid #000000;"></td><td bgcolor=#32383c style="border: 1px solid #000000;"><input type="submit" name="submit" value="senden"></td>
</tr>
</form>
</table>
</html>
so, nutze ich bei fopen $mode "a" oder "a+", dann bekomme ich:
Warning: fopen(ftp://...@IP/ordner/test.txt) [function.fopen]: failed to open stream: FTP does not support simultaneous read/write connections......
was habe ich falsch gemacht.....?
Danke !