Okay so a part of the web page that I'm currently building on Dreamweaver CS4 requires this: (Its for grocery items in a supermarket)
- Visitor types item name into a textfield, hits the submit button.
- The html page for that specific item will be displayed inside an IFrame below. The html page names however are named in their respective item ID's 1B45.html, 1002.html etc
- Each item has a 4 character ID such as 123A or 0002 etc. I have a table with two columns: ID and item name, I'm not really sure how to do the conversions.
I guess that is simple enough, here is the coding I have for this part so far:
<input type="text" name="textfield2" id="textfield2" />
<input type="submit" name="button2" id="button2" value="Search" />
<iframe frameborder="1" width="100%">
</iframe>
Can anyone direct me on what to do next?
I'll probably place the 500 or so item html pages in the same folder as this one (index.html).
I think thats as simple as I can put it, thanks for your time :D