HEX
Server: Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/8.4.25
System: Windows NT DESKTOP-4TAV2RJ 10.0 build 19045 (Windows 10) AMD64
User: fred (0)
PHP: 8.4.25
Disabled: NONE
Upload Files
File: C:/xampp/htdocs/mrss/error.php
<!DOCTYPE html>

<html>

<head>

<meta http-equiv="content-type" content="text/html;charset=utf-8">

<title>Error</title>

</head>

<body>

<p>

<?php

if(isset($_GET['error_code']))
{
	$error_code = $_GET['error_code'];
}
else
{
	$error_code = '0';
}

if($error_code == '1')
{
	echo 'Salt must be 9 characters. Check config.php.';
}
elseif($error_code == '2')
{
	echo 'You must enable JavaScript in your browser';
}
elseif($error_code == '3')
{
	echo 'You must enable cookies in your browser';
}
else
{
	echo 'Unknown error';
}

?>

</p>

<p><a href=".">Click here to go back</a></p>

</body>

</html>