|
Posted by Rik on 07/31/07 01:38
On Tue, 31 Jul 2007 03:20:48 +0200, ttrium <arcotik@gmail.com> wrote:
> On Jul 30, 8:15 pm, Rik <luiheidsgoe...@hotmail.com> wrote:
>> On Tue, 31 Jul 2007 03:10:10 +0200, ttrium <arco...@gmail.com> wrote:=
>> > Ok, so this is probably the easist question ever posted, but I
>> > honestly can't find the answer (if there is one).
>>
>> > How do I (by which function) add data to a file at the beginning of=
a
>> > file, rather than the end of the file (as is with fopen(file, "a"))=
?
>>
>> You cannot 'prepend' data. You'll have to fetch the content, write yo=
ur
>> new content to the beginning of the file, and then add the old conten=
t.
>
> Is there a simpler way by using databases?
If by this you mean: 'if I have the content in a database instead of a =
file', why yes indeed.
UPDATE table SET field =3D CONCAT('prepended string',field);
However, if the order of things in the field matter (I don't know what =
data we're talking about), maybe different rows is a better solution.
-- =
Rik Wasmus
Navigation:
[Reply to this message]
|