wbItemSave(string $form , array $item[ , bool $flush = false] )
Function save a single record in to the form (table). As result return the count of bytes stored data. In case of failure, will returns NULL .
Arguments:
Example :
<?php $Item=array( "id"=>"mypage" ,"header"=>"My page" ,"text"=>"This is a test page" ,"active"=>"on" ); $res=wbItemSave("pages",$Item); if ($res==null) { echo "Error"; } else { echo "Saved {$res} bytes"; } ?>