Replacing php
How would I replace this
<?php
$getfile = rand(1,5);
$includefile = "file" . $getfile . ".txt";
include ($includefile);
?>
on my web page, with another one exactly the same after the
first one executes? Very important, I hope someone can give me some ideas. Thanks.
|