add delay for loading

This commit is contained in:
awesomeuser 2023-08-01 23:34:42 +00:00
parent 6469b8348f
commit f84261c1c7

View file

@ -99,6 +99,7 @@
<?php <?php
// read from file // read from file
sleep(0.5);
$myfile = fopen("posts.txt", "r") or die("Unable to open file!"); $myfile = fopen("posts.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("posts.txt")); echo fread($myfile,filesize("posts.txt"));
fclose($myfile); fclose($myfile);