Dropdown menu & dynamic values

wxdqz

New Member
How can the number of records in a particular option be shown in a drop down menu. The values are obtained from a flat text file. Example <!-- w --><a class="postlink" href="http://www.batchmates.com">www.batchmates.com</a><!-- w -->. When one sees the year wise list, he gets to see how many users are registered for that particular year.

<option value=http://www.webdeveloper.com/forum/archive/index.php/"1919">1919(1)</option>
<option value="1947">1947(2)</option>
<option value="1951">1951(1)</option>
<option value="1961">1961(2)</option>
<option value="1963">1963(3)</option>
<option value="1964">1964(3)</option>

The values in brackets () are obtained from a .dat file.
 
Back
Top