Mike Ford had the answer:
$fp = fopen("test", "r+");

----- Original Message -----
From: "Marek Kilimajer" <[EMAIL PROTECTED]>
To: "PHP" <[EMAIL PROTECTED]>
Sent: Wednesday, October 30, 2002 6:28 AM
Subject: Re: [PHP] write on the begin of a file


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




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

Reply via email to