Login   Register  
PHP Classes
elePHPant
Icontem

File: index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Vibert Bruno  >  Process Wait Screen  >  index.php  >  Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Demo index
Class: Process Wait Screen
Display wait screens to show during long processes
Author: By
Last change:
Date: 2004-05-11 08:36
Size: 1,044 bytes
 

Contents

Class file image Download
<?
include( "inc_config.php" );

switch( 
$fuseAction )
{

    case 
"default":
        include( 
BASE_PATH "dsp_contactForm.php" );
        break;
    
end;
    
    case 
"processContactForm":
        
// Include this line to enable wait screen
        
include( BASE_PATH."act_processStart.php" );

        
/*** Include all your process here ***/
        
include( BASE_PATH."act_processContactForm.php");
        
/*************************************/
        
        // Define the GOTO variable to redirect the user
        
$GOTO BASE_PATH "index.php?fuseAction=processContactFormConfirm";
        
        
// Include this line at the end of your process to redirect the user
        
include( BASE_PATH."act_processEnd.php" );    
        break;
    
end;
    
    case 
"processContactFormConfirm":
        include( 
BASE_PATH "dsp_processContactFormConfirm.php" );
        include( 
BASE_PATH "dsp_contactForm.php" );
        break;
    
end;

    case 
"waitScreen":
        include( 
BASE_PATH "dsp_waitScreen.php" );
        break;
    
end
    
    default:
        echo 
"<font color=red><b>$fuseAction</b> unknow !</font>";
        break;
    
end;
    
}

?>