array ("request", "string", ""), "sub" => array ("request", "string", ""), "sub_old" => array ("request", "string", ""), "type" => array ("request", "string", $dom->type_local), "type_old" => array ("request", "string", ""), "value_old" => array ("request", "string", ""), ); getFields($fields); // here we get a dynamic-named value $dynamicvar="t_$type"; $fields = array ( "$dynamicvar" => array ("request", "string", ""), ); getFields($fields); $value=$$dynamicvar; // The dynamic value is now in $value $dom->lock(); $dt=$dom->domains_type_lst(); if ( (!isset($isinvited) || !$isinvited) && $dt[strtolower($type)]["enable"] != "ALL" ) { __("This page is restricted to authorized staff"); exit(); } $r=$dom->set_sub_domain($domain,$sub,$type,$value, $type_old, $sub_old, $value_old); $dom->unlock(); if (!$r) { $error=$err->errstr(); $noread=true; include("dom_subedit.php"); exit(); } else { $t = time(); // XXX: we assume the cron job is at every 5 minutes $noread=false; $error=strtr(_("The modifications will take effect at %time. Server time is %now."), array('%now' => date('H:i:s', $t), '%time' => date('H:i:s', ($t-($t%300)+300)))); foreach($fields as $k=>$v) unset($$k); } include("dom_edit.php"); exit; ?>