Hello I have a drop down box which the user will make there selection:
$result=mysql_query($query);
while(list($I_from)=mysql_fetch_row($result)) {
print "<option value='$I_from'><center>$I_from</option>\n";
}
Based on there selection I need to take $I_from and do a select and get the rest of the info. that is related to $I_from (there selection) and post it to a form. The reson that this is tricky is because I cannot modify the form at all.....so just passing the ID and then selecting the info. on the form page is out of the question.
Can this be done any other way?????
Thanks for you help
Khris