In the event that 2000ad.org isn't resurrected then I could move it to 2000ad.net.
However, there would be a whole bunch of files with code like this:
$query = "SELECT ProgNumber FROM $CoverStory ORDER by ProgDate";
$choiceResult = mysql_query($query);
$rows = mysql_num_rows($choiceResult);
$FirstProg = mysql_result($choiceResult, 0, "ProgNumber");
$LatestProg = floor(mysql_result($choiceResult, $rows - 1, "ProgNumber"));
which would need to be edited to look more like this:
$query = "SELECT ProgNumber FROM $CoverStory ORDER by ProgDate";
$ChoiceResult = mysqli_query($link,$query);
$rows=mysqli_num_rows($ChoiceResult)
$row = mysqli_fetch_row($ChoiceResult);
$FirstProg = $row[0];
$LatestProg = ???
The advantage is that I'd then have phpMyAdmin access to the database again, rather than having to do everything through bespoke code.
However, fingers crossed it won't come to this. The advantage of easier access is more than outweighed by the disadvantages of an address change and recoding.