Good people, I am really stumped this time and need your urgent help.
I am doing street inventories whereby a street name (we call it route_name in this code) can be associated with one or more block_names.
What I have done so far is code it in such a way that if you select a route_name, all the blocks associated with that route_name is displayed and you can actually see a count of how many blocks are associated with a given block_name (called blockcount).
So far, so good.
Problem comes in when I attempt to store a given route_name along with its associated block_Name.
It doesn't matter what block_name is selected, the very first one always gets selected.
For instance, let's say that I have a route_name called Jim Watts Street, and let's say also that there are 5 block_names associated with this route_name.
Let's further say that block_names are paired like the following:
From block_A to block_B,
From followed b to block_C,
From C to Block_D,
From Block_D to block_E, and
From block_E to block_F
Finally, let's say that I wanted to process only from
block_C to block_D, when I complete the process and store the results in the db, I expect to see block_C to block_D.
Instead, I always see From block_A to blkc_B.
Doesn't matter what block pair I processed.
Can you please take a look at my code snippet.
The code is long but I will just post a small portion.
Thanks in advance for your assistance.
I am doing street inventories whereby a street name (we call it route_name in this code) can be associated with one or more block_names.
What I have done so far is code it in such a way that if you select a route_name, all the blocks associated with that route_name is displayed and you can actually see a count of how many blocks are associated with a given block_name (called blockcount).
So far, so good.
Problem comes in when I attempt to store a given route_name along with its associated block_Name.
It doesn't matter what block_name is selected, the very first one always gets selected.
For instance, let's say that I have a route_name called Jim Watts Street, and let's say also that there are 5 block_names associated with this route_name.
Let's further say that block_names are paired like the following:
From block_A to block_B,
From followed b to block_C,
From C to Block_D,
From Block_D to block_E, and
From block_E to block_F
Finally, let's say that I wanted to process only from
block_C to block_D, when I complete the process and store the results in the db, I expect to see block_C to block_D.
Instead, I always see From block_A to blkc_B.
Doesn't matter what block pair I processed.
Can you please take a look at my code snippet.
The code is long but I will just post a small portion.
Thanks in advance for your assistance.