I'm new to HEROKU APPS
.
In my heroku app i have a problem. that is I'm using a php script to save data on server.
Example :
<?PHP
$file = "example.txt";
$data = "Something...";
file_put_contents($file,$data);
?>
This PHP script run successfully and save data perfectly.
But, when I deploy my APP to HEROKU
to update -> in this precess example.txt
file is automatically deleted.