send information to multiple pages
Posted: Mon May 25, 2009 3:01 pm
does anyone know how i can send variables to multiple pages. the code i currently have is as follows (its php used with the backbase framework)
but i would like it to send the information to multiple pages and destinations
any help much appreciated
Code: Select all
<div class='buttoninfo'>
<form id=\"button2FL\" method=\"POST\" action=\"customerinfo.php\" bf:destination=\"id('customerinformation')\" bf:mode=\"replace\">
Call ID: <input type='text' value='$row2FL2[Call_Num]' readonly='readonly' size='4' name='valuecallnum' class='infobox'></input>
Status = $row2FL2[Call_Status]
<hr/>
Customer: $row2FL1[1] $row2FL1[2]
<input type='text' value='$row2FL1[Customer_ID]' readonly='readonly' size='4' name='valuecustomer' class='infobox'></input>
<br/>
Department: $row2FL2[Department]
<br/>
Asset: <input type='text' value='$row2FL2[Asset_Tag]' readonly='readonly'size='4' name='valueasset' class='infobox'></input>
</form>
</div>
Code: Select all
action=\"customerinfo.php\" bf:destination=\"id('customerinformation')\" bf:mode=\"replace\"
action=\"callinfo.php\" bf:destination=\"id('callinformation')\" bf:mode=\"replace\"
action=\"assetinfo.php\" bf:destination=\"id('assetinformation')\" bf:mode=\"replace\"