Insert a record...<br>
 
<?
 
  include("textdb.php");
 
  
 
  $test = New textDB("test.txt");
 
  
 
  $record = $test->first();
 
  while ($record)
 
  {
 
    echo $record[id]." ".$record[label]." ".$record[text]."<br>";
 
    $record = $test->next();
 
  }
 
 
  $record[id]    = 12;
 
  $record[label] = "c54332";
 
  $record[text]  = "If this works";
 
 
  $test->insert($record);      
 
 
  $record = $test->first();
 
  while ($record)
 
  {
 
    echo $record[id]." ".$record[label]." ".$record[text]."<br>";
 
    $record = $test->next();
 
  }
 
  
 
?>
 
 
 |