function:form_open ( action, attribute, hidden )
return type:string
content:ใช้สร้าง code ในส่วนของ tag เปิดของ form แบบ post ( มี attribute method="post" )
example:$attribute = array ( "id"=>"form", "class"=>"form" );
$hidden = array ( "parent_id"=>"0" );
echo form_open ( "product/save", $attribute, $hidden );
comment:ตัวแปร action ใช้กำหนด action ให้กับ form โดยเริ่มตั้งแต่ controller
ตัวแปร attribute ใช้กำหนด attribute โดย key คือ ชื่อแอททริบิวต์ และ value คือค่าข้อมูลของแอททริบิวต์นั้นๆ
ตัวแปร hidden ใช้สร้าง input ประเภท hidden โดย key คือค่าข้อมูลของแอททริบิวต์ name และ value คือค่าข้อมูลของแอททริบิวต์ value