PHP Classes

File: forms/stage_2.php

Recommend this page to a friend!
  Classes of Bogdan Lupandin   Installation Automation   forms/stage_2.php   Download  
File: forms/stage_2.php
Role: Example script
Content type: text/plain
Description: Stage 2 of the installation automation example install
Class: Installation Automation
Automate multi-step application installations
Author: By
Last change:
Date: 14 years ago
Size: 458 bytes
 

Contents

Class file image Download
<p>The Verification Form: Form 2</p>
<p>You have submitted the SQL variables... Below is what you have submitted:<br />
<ins><ul>
<?php
    $inst
= new install();
   
    foreach(
$_SESSION['sql'] as $key => $value)
    {
        echo
"<li><strong>$key</strong> - $value</li>";
    }
?>
</ul></ins>
</p>
<form action="<?=$_SERVER['REQUEST_URI']?>" method="post">
<p>
Continue? <input type="image" value="continue" name="submit" />
</p></form>