Jump to content

Appending to file on top, not bottom


solarisuser

Recommended Posts

try this

[code]function write_beg($filename, $data){
    //Imports old data
    $handle = f open($filename, "r");
    $old_content = f read($handle, filesize ($filename));
    f close($handle);

    //Sets up new data
    $final_content = $data.$old_content;

    //Writes new data
    $handle2 = f open($filename, "w");
    $finalwrite = f write($handle2, $final_content);
    f close($handle2);
} [/code]

everywhere there is a f with a space after it, remove the space.

Lite...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.