Your IP : 3.138.105.128
<?php include('includes/config.php'); if ($_SERVER['REQUEST_METHOD'] == 'POST' && $_POST['action'] == 'search') { $_SESSION['post'] = $_POST; if (!is_empty($_POST['franchise_selector'])) { $franchises = get_franchise_info($_POST['franchise_selector']); $_SESSION['post']['franchise'] = $franchises; } } header('location: franchise.php'); exit(); |