Form.php
<?php $this->callHandler('compileAndAddResources');?>
<?php
$table = 'note';
$find = 'id:'.$id.';';
$list = $this->callHandler('find',$table,$find);
foreach ($list as $note){ ?>
<form action="<?=$submit_url;?>" method="POST">
am a form
<input type="text" name="name" value="<?=$note->name; ?>">
<input type="text" name="body" value="<?=$note->body; ?>">
<input type="submit">
<input name="id" value="<?=$note->id; ?>" type="hidden"><input name="fresh_table" value="note" type="hidden">
</form>
<?php
}
?>