How do i get information from a ComboBox and get it parsed with the following code
PHP Code:
<?php // Set default $theme = 'naruto'; if (isset($_POST['theme']) AND file_exists('theme/' . $_POST['theme'] . '.txt')) { // Set to new selected theme from previous form $theme = $_POST['theme']; } else if (isset($_COOKIE['theme']) AND file_exists('theme/' . $_COOKIE['theme'] . '.txt')) { // Set to current cookie selected $theme = $_COOKIE['theme']; } setcookie('theme', $theme, time()+60*60*24*60); include('theme/' . $theme . '.txt'); ?>
and then i would like it to load that page in the same window/tab
|