index.php
Snapshot 2026.09.17-a2894de (current) · 7 lines · 217 bytes · tree · plain text
SHA-256
0ccd650e261b5d8996a22cb1d7e9010d7b634e322d12b670e69b0322a10865c2| 1 | <?php |
| 2 | require_once __DIR__.'/inc/layout.php'; |
| 3 | $p = preg_replace('/[^a-z]/','', $_GET['p'] ?? 'live'); |
| 4 | $file = __DIR__."/pages/$p.php"; |
| 5 | if(!is_file($file)){ $p='live'; $file=__DIR__.'/pages/live.php'; } |
| 6 | require $file; |
| 7 | |
Lines can be cited as index.php L120-L140, platform code 2026.09.17-a2894de; add #L120-L140 to this page's address to highlight them. Source shown for scrutiny of the research platform. All rights reserved. Not offered as installable software.