You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
432 B
PHP
26 lines
432 B
PHP
<?php
|
|
|
|
include("./common.php");
|
|
|
|
if (!isset($_GET['name'])) {
|
|
die("missing name");
|
|
}
|
|
|
|
$name = $_GET['name'];
|
|
// trigger auth
|
|
$vcnt = xcache_count(XC_TYPE_VAR);
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
xcache_set($name, $_POST['value']);
|
|
header("Location: xcache.php?type=" . XC_TYPE_VAR);
|
|
exit;
|
|
}
|
|
$value = xcache_get($name);
|
|
|
|
$xcache_version = XCACHE_VERSION;
|
|
$xcache_modules = XCACHE_MODULES;
|
|
|
|
include("edit.tpl.php");
|
|
|
|
?>
|