pella logo
Temperatur i Norrköping just nu:
Click for Norrköping, Sweden Forecast

Show sourcecode

The following files exists in this folder. Click to view.

public_html/incl/style/

aside.php
choose_stylesheet.php
choose_stylesheet_process.php
default.php

choose_stylesheet_process.php

24 lines ASCII Windows (CRLF)
<?php
// Was the form submitted? Then change current stylesheet in the session
if(isset($_POST['stylesheet'])) 
{
  if(
$_POST['stylesheet'] == '-1'
  {
    unset(
$_SESSION['stylesheet']);
  } 
  else
  {
    
$_SESSION['stylesheet'] = strip_tags($_POST['stylesheet']);
  }
}

// Example-code below, copied from the manual: http://php.net/manual/en/function.header.php
/* Redirect to a different page in the current directory that was requested */
$host  $_SERVER['HTTP_HOST'];
$uri   rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
$extra 'style.php?p=choose-stylesheet';
header("Location: http://$host$uri/$extra");
exit;