<?php
# PHP guestbook (GBook) - redirection script
# Version: 1.0
# File name: go.php
# Written 9th July 2004 by Klemen Stirn (info@phpjunkyard.com)
# http://www.PHPJunkYard.com

##############################################################################
# COPYRIGHT NOTICE                                                           #
# Copyright 2004 PHPJunkYard All Rights Reserved.                            #
#                                                                            #
# This script may be used and modified free of charge by anyone so long as   #
# this copyright notice and the comments above remain intact. By using this  #
# code you agree to indemnify Klemen Stirn from any liability that might     #
# arise from it's use.                                                       #
#                                                                            #
# Selling the code for this program without prior written consent is         #
# expressly forbidden. In other words, please ask first before you try and   #
# make money off this program.                                               #
#                                                                            #
# Obtain permission before redistributing this software over the Internet or #
# in any other medium. In all cases copyright and header must remain intact. #
# This Copyright is in full effect in any country that has International     #
# Trade Agreements with the United States of America or with                 #
# the European Union.                                                        #
##############################################################################

/********************************************************************************************
* Ezt a programot a PHP Studio fordította. / This program was translated by the PHP Studio  *
* Weblapunk / Our webpage: http://phpstudio.hu                                              *
* E-mail címünk / Our E-mail adress: support@phpstudio.hu                                   *
* Fordító / Translator: Warner                                                              *
* ========================================================================================= *
* A szoftverre az eredeti verzió jogállása vonatkozik.                                      *
* This software is distributed under the legal status of the originial version.             *
* ========================================================================================= *
* Dátum / Date: 2006. 07. 16.                                                               *
********************************************************************************************/

#############################
#     DO NOT EDIT BELOW     #
#############################

preg_match("/^url=(.*)/",$_SERVER['QUERY_STRING'],$matches);
Header("Location: $matches[1]");
exit();
?>