Append at the beginning of the file in PHP - Stack Overflow

PHOTO EMBED

Mon Aug 21 2023 20:24:56 GMT+0000 (Coordinated Universal Time)

Saved by @mvieira #php

    <?php
    $file_data = "Stuff you want to add\n";
    $file_data .= file_get_contents('database.txt');
    file_put_contents('database.txt', $file_data);
    ?>
content_copyCOPY

https://stackoverflow.com/questions/16978227/append-at-the-beginning-of-the-file-in-php