Note: If you have FrontPage, you may have to put quotes around the entire file name in order for FrontPage to allow you to save the file as .php For example: "myProductPage.php".
Warning! If you are using FrontPage, you MUST rename your file to use a php. extension every time you edit a Product Page locally with an Include and publish it to the web server.
If you want to use an Include when building a Product Page, you must use the following procedure:
For example:
<% 'edit this file for the options you want to display 'There is no longer a maximum number of options but all must be named option 'you can delete the options you don't need 'you can specify a price increase for option but separating the option value with the delimiter (default=$) specified in the wizard %>
<p><strong>Size:</strong> <select name="Option1" size="1"> <option value="5">5</option> <option value="5.5">5.5</option> <option value="6">6</option> <option value="6.5">6.5</option> <option value="7">7</option> <option value="7.5">7.5</option> <option value="8">8</option> <option value="8.5">8.5</option> <option value="9">9</option> <option value="9.5">9.5</option> <option value="10">10</option> <option value="10.5">10.5</option> <option value="11">11</option> </select><br> <strong>Color:</strong> <select name="Option2" size="1"> <option value="Red">Red</option> <option value="Blue">Blue</option> <option value="Green">Green</option> <option value="Black">Black</option> <option value="Tan">Tan</option> </select><br> <strong>Type:</strong> <select name="Option3" size="1"> <option value="Cotton">Cotton</option> <option value="Wool">Wool</option> <option value="Polyester">Polyester</option> </select><br> <strong>Size Range:</strong> <select name="Option4" size="1"> <option value="Adult">Adult</option> <option value="Child">Child</option> </select> Adult Size<br> <strong>Wash Instructions:</strong> <select name="Option5" size="1"> <option value="No-Wash">No-Wash</option> <option value="Pre-Wash">Pre-Wash</option> <option value="Bleach">Bleach</option> </select>
<br> <font color="#808080">Add as many options and price adjustments as you like<br> </font>
|