1
0
Fork 0
xcache/admin/edit.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");
?>