<?php
 
set_time_limit (5);
 
/**
 
* basic test reading an array
 
* step is 10 lines
 
*/
 
?>
 
<?xml version="1.0" encoding="iso-8859-1"?>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
 
    <head>
 
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
 
    <script language="Javascript" type="text/javascript" src="class/class.noTimeOut.js"></script>
 
        <script type="text/javascript">
 
        oBuffer = new noTimeOut ();
 
        oBuffer.declareStack ('ARRAY');
 
        oBuffer.initialize ('ARRAY', 'START', 0);
 
        oBuffer.initialize ('ARRAY', 'LIMIT', 5000);
 
        oBuffer.initialize ('ARRAY', 'STEP', 10);
 
        oBuffer.initialize ('ARRAY', 'TARGET', 'divContent');
 
        oBuffer.initialize ('ARRAY', 'MSG', 'msg');
 
        oBuffer.initialize ('ARRAY', 'SCRIPT', 'scripts/arrayFetch.php');
 
        oBuffer.initialize ('ARRAY', 'TYPE', 'DEFAULT');
 
 
        oBuffer.startWork ('ARRAY');
 
        </script>
 
    </head>
 
    <body>
 
        <div id="msg">Waiting</div>
 
        <div id="divContent" style="width: 500px;"></div>
 
    </body>
 
</html>
 
 |