(not disregarding your advice, i just wanted to illustrate what i've been working on currently w/ regard to my puzzlement)
yeah, i've just been sitting here trying to figure out what are the differences between my code, and that of the example in the manual. so, i did what i should have done long ago-- use a test page, and work only on this section so i can think more clearly outside of the noise of the rest of the script. i should do that more often as it defintely helps me!
one obvious difference between my code and that in the manual description is that i've defined both the $keys and the $values, and my output prints both the keys and the values.
$tranSelector .= "<option value=\"".$key."\">".$key." - ".$value."</option>";
also, the example shows this:
$array = array('lastname', 'email', 'phone');
using single quotes, while i've done this:
$routes = array(
"A" => "routeA", "B" => "routeB", "C" => "routeC", ...
so, my first thought is-- how do i modify:
$glue = ",";
$values = implode($glue , $_POST['near_transfer']);
echo "<p>the route name is ".$_POST['route']." and...</p>";
echo "<p>the nearest transfers are ".$values.". and that's all she wrote!"
to make it more congruent with the description in the manual. i should know this-- but-- do the single quotes vs double quotes have bearing on the correctness of mine, and if so-- where and why? from what i can tell in about string literal specifications, whether i've used single or double quotes in this circumstance is irrelevant. am i correct?
thanks very much for your help!