Files
browser-terminal/terminal.php
T

18 lines
366 B
PHP

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- <meta http-equiv="refresh" content="2"> -->
<title>frame</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<?php
$output_str = "Welcome to the terminal!<br/>Type 'help' to see a list of commands.<br/>";
echo $output_str;
?>
</body>
</html>