Hi,
I need a script, which I can INSERT more rows at once.
I have this code in admincp:
PHP Code:
if ($_REQUEST['do'] == 'add')
{
print_form_header('myscript', 'insert');
print_table_header('Total 10 rows will be shown ');
print_select_row('Select a Category', 'categoryid', fetch_categories_array($catid));
for ($x = 1; $x <= 10; $x++)
{
print_input_row('Title '.$x.'', 'title['.$x.']');
print_input_row('Description '.$x.'', 'description['.$x.']');
}
print_submit_row($vbphrase['add']);
}
How do I have
POST insert code?
Can anyone help me?
Thank you (sorry for my very bad English

)