I have a web hosting service with E-Commerce facilities. This site has built in product and category search functions, but I need to dynamically build a seperate web page for each category. I am not the only person maintaining the product list though.
How can I extract the category names from the dynamically created search page so I can build a new page for each category ?
One thought was to try to include it in a page of my own, possibly using an IFRAME, but I am not sure how to get at the option text inside the select tag.
<b>Category Search</b> <SELECT STYLE="font-size:10px;" name=custom_store_category>
<OPTION value=http://www.webdeveloper.com/forum/archive/index.php/4>Accessories</OPTION>
<OPTION value=1>Cars</OPTION>
<OPTION value=3>Engine parts</OPTION>
<OPTION value=2>Parts</OPTION>
<OPTION value=6>Service</OPTION>
<OPTION value=8>something else</OPTION>
</SELECT>
How can I extract the category names from the dynamically created search page so I can build a new page for each category ?
One thought was to try to include it in a page of my own, possibly using an IFRAME, but I am not sure how to get at the option text inside the select tag.
<b>Category Search</b> <SELECT STYLE="font-size:10px;" name=custom_store_category>
<OPTION value=http://www.webdeveloper.com/forum/archive/index.php/4>Accessories</OPTION>
<OPTION value=1>Cars</OPTION>
<OPTION value=3>Engine parts</OPTION>
<OPTION value=2>Parts</OPTION>
<OPTION value=6>Service</OPTION>
<OPTION value=8>something else</OPTION>
</SELECT>