Source of: /ADI/auth-db-sessions/signup_success.php

<?php

session_start
();

require_once
"HTML/Template/IT.php";

 
// Cria um novo objecto template
 
$template = new HTML_Template_IT('.');


 
$template->loadTemplatefile('signup_success.html', true, true);
 
$template->setCurrentBlock("MESSAGE");

      
      
  
$template->setVariable('USERID', $_SESSION['userid']);
  
$template->setVariable('PASSWORD', $_SESSION['password']);

  

    
$template->parseCurrentBlock();

  
$template->show();
 
?>