http://www.fsf.org/ or write * to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. * */ /* We said cmsdam is built with security in mind, and we also said that it's built with scalability. So, this is a quick way to get the variables from the outside. Each NON template external variable (session, cookie, GET, POST...) we want to GET must be picked here first of use. This method prevents variable poisoning and make cmsdam work correctly even with register_globals = Off */ // Choosed section $section = $_REQUEST['section']; // Choosed operation $operation = $_REQUEST['cmsdamOperation']; // Choosed operation item $cmsdamitem = $_REQUEST['cmsdamItem']; // No HTTP cache this section $n_c = $_REQUEST['n_c']; // Logout variable $logout = $_REQUEST['logout']; // Login username variable if (isset($_SESSION['cmsdamUser'])) { $cmsdamUser = $_SESSION['cmsdamUser']; } // Chosen language cookie $cmsdam_lang = $_REQUEST['cmsdam_language']; if ((!isset($cmsdam_lang)) || ($cmsdam_lang == "")) { // Chosen language cookie $cmsdam_lang = $_COOKIE['cmsdam_lang']; } // Chosen old section $cmsdam_oldsect = $_COOKIE['cmsdam_oldsect']; ?>