| 
<?php
header('Content-type: text/html; charset=iso-8859-1');
 set_time_limit (2);
 require_once '../class/class.noTimeOut.php';
 if (isset ($_POST['iStart'])) {
 $oNTM = new noTimeOut;
 $oNTM -> TYPE = 'FILE_OCTET';
 $oNTM -> FILE = $_POST['sFile'];
 $oNTM -> START = $_POST['iStart'];
 $oNTM -> STEP = $_POST['iStep'];
 $sChaine = $oNTM -> flushMe ();
 echo $sChaine;
 }
 ?>
 |