There is no insert in fputs, you need to make a new file and then rename it to
your old one, or build it in the memory and then overwrite it.

Sébastien Eckert -- Netika wrote:

Hi

I have this

***********
line 1
line 2
...
***********

and i want have this after my script ...
***********
MY NEW TEXT
line 1
line 2
...
***********

i had test this but it seems not work :

$fp = fopen("test", "a+");

fseek ($fp,0);

fputs($fp,"set IP=192.11.11.11\n");

fclose($fp);



i had test the same script with w+ and rewind($fp) but it didnt work ...



thx .....





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to