$hfind(table,prince,0).data <- searches the data for 'prince'
$hfind(table,*prince,0,w) <- searches the items for '*prince'
$hfind doesn't return the data with the .data property, it searches through it. Asuming you want to return the data for 'prince' in the first case you need to do:
$hget(table,$hfind(table,prince))
Hope this helps.
Remco
Last edited by remco25; 14/02/05 03:58 AM.