| 
<?php
include_once 'pagetop.inc.php' ;
 ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <html>
 <head>
 <meta http-equiv="Expires" content="Fri, Jan 01 1900 00:00:00 GMT">
 <meta http-equiv="Pragma" content="no-cache">
 <meta http-equiv="Cache-Control" content="no-cache">
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <style type="text/css"> .error {color: red} </style>
 <title>Page B</title>
 </head>
 <body>
 <?php echo $errormessage; ?>
 <h1>Page B</h1>
 
 <p>Results of completed pages:<br>
 <?php echo $_SESSION['results']; //this is just for testing ?>
 </p>
 
 <p>Fill in something specific for this page:</p>
 <form name="form1" method="post" action="ok.php?<?php echo $_SESSION['sst']->getParam('pop'); ?>">
 <input type="text" size="20" name="myinput">
 <p><input type="submit" name="cancel" value="cancel">  
 <input type="submit" name="ok" value="ok">
 </p>
 </form>
 
 </body>
 </html>
 
 |