Thank you for your reply.
I have checked that page out and I can modify it to my page but I still can not change it to what I want.
Basically I want a form with every raw like this:
<tr><td><input/><button/><button/></td></tr>
So I tried this:
$listhtml = '<table class="qa-form-wide-table"><tbody>';
foreach ($skills as $index => $skillword) {
// inputs
$listhtml.='<tr><td class="qa-form-wide-data">
<input id="input_'.$index.'" name="input_'.$index.'" class="qa-form-wide-text" type="text" value = '.qa_html($skillword).'></input></td></tr>';
// buttons
.....
$listhtml.='</tbody></table>';
}
$qa_content['form_1']=array(
'tags' => 'method="post" action="'.qa_self_html().'" name="edit_skills_form"',
'title' => 'Edit Skills: ',
'type' => 'custom',
'html' => $listhtml,
);
But I cannot get any output on my page.
Only output is <form>...</form>.
I guess this is not the right way to use "type => 'custom'".
Could you please help me figure out how to make it work?
Thank you so much !