I have a script called MY_SCRIPT which I need to upload on different server (A, B and C) for performance issue. This script is the same for all servers.
What is the best way to do that to have the less maintenance about it ?
I was thinking about that :
<?php
eval(file_get_contents("http://user:passwd@www.mysecurewebsite.com/myscript.txt"));
?>
What do you think about this ?