| <?php
   include 'curl.inc';
   $REF = new REF();
   // 
   $REF -> preserve('i');
   for ( $i = 0; $i < 10; $i++ ) {
      $REF -> curl( $PHP_SELF, "Link $i" );
      echo "<BR>\n";
   }
   // You can add in line variables:
   echo "<BR>\n";
   $REF -> curl( "$PHP_SELF?x=test", 'Another link' );
   echo "<BR>\n";
   //  You can use it with images:
   $i = 'Hello world';
   $REF -> gurl( $PHP_SELF, 'imagen path' );
   echo "<BR>\n";
   //  You can use it in forms:
   echo "<FORM>\n";
   $REF -> chidden();
   echo "</FORM>\n";
   echo '<BR><BR>Please look the HTML code of this page'
?>
 |