PHP Classes

File: redirect.php

Recommend this page to a friend!
  Classes of Axel Pardemann   AMDev_Captcha   redirect.php   Download  
File: redirect.php
Role: Auxiliary script
Content type: text/plain
Description: Processing form data page
Class: AMDev_Captcha
Generate form elements for CAPTCHA validation
Author: By
Last change: Improved example
Date: 16 years ago
Size: 311 bytes
 

Contents

Class file image Download
<?php
// This is the processing page. All process ocurrs here and then it should redirect to another page
?>
<?php
$r
= "Location: finish.php?process=true&";
if(isset(
$_POST))
{
    foreach(
$_POST as $key=>$val)
    {
       
$r .= $key."=".$val."&";
    }
}
$r = substr($r, 0, strlen($r) - 1);

header($r);
?>