Atlas - index.php

Home / toolkits / LWPS / server Lines: 1 | Size: 1202 bytes [Download] [Show on GitHub] [Search similar files] [Raw] [Raw (proxy)]
[FILE BEGIN]
1<!-- make a var with Hello world and make a H1 Using var --> 2<php? $greeting = "Hello, World!"; ?> 3<!DOCTYPE html> 4<html lang="en"> 5<head> 6 <meta charset="UTF-8"> 7 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 8 <meta name="viewport" content="width=device-width, initial-scale=1.0 9"> 10 <title>LWPS Server Index</title> 11 <style> 12 body { 13 font-family: monospace, monospace; 14 margin: 40px; 15 background-color: #1e1e1e; 16 color: #d4d4d4 17 } 18 h1{ color: #6fff7dff; } 19 p { 20 font-size: 18px; 21 } 22 </style> 23</head> 24<body> 25 <h1>Congratulations!</h1> 26 <p><?php echo "If you see this text then it means PHP is working correctly"; ?></p> 27 <ul> 28 <li>PHP Version:<code> <?php echo phpversion(); ?></code></li> 29 <li>Server Software:<code> <?php echo $_SERVER['SERVER_SOFTWARE']; ?></code></li> 30 </ul> 31 <h2>README File</h2> 32 <pre> 33<?php 34 $readme_path = __DIR__ . '/../README'; 35 if (file_exists($readme_path)) { 36 echo htmlspecialchars(file_get_contents($readme_path)); 37 } else { 38 echo "README file not found."; 39 } 40?> 41 </pre> 42</body> 43</html> 44
[FILE END]
(C) 2025 0x4248 (C) 2025 4248 Media and 4248 Systems, All part of 0x4248 See LICENCE files for more information. Not all files are by 0x4248 always check Licencing.