hello

just a side note

instead of 
> ereg( '^<$var>(.*)$', $line, $matches )
use 
preg_match('/^<'.$var.'>(.*)$/', $line, $matches)
since it is faster than ereg. 

Regards
Stefan Langer

Reply via email to