i think its only the action to different pages
eg
~~
<form action=somepage.php method=post>
name <input type=text name=name>
<input type=submit>
</form>
now somepage.php
so u form a array of pages to actions --
$actions =array("a.php,b.php,c.php,d.php.....");
foreach ($actions as $vals){
here goes the action to page
}
mandar