Jump to content

Codeman0013

Members
  • Posts

    20
  • Joined

  • Last visited

    Never

About Codeman0013

  • Birthday 03/31/1985

Contact Methods

  • AIM
    sideburnz016

Profile Information

  • Gender
    Male
  • Location
    Central Illinois USA

Codeman0013's Achievements

Member

Member (2/5)

0

Reputation

  1. I want to use [code]unset($_POST['productCat_id']);[/code] to clear out my url if the user selects a new industry_id . Here is my code maybe you can help me understand where it goes... [code]<form name="distributers" />   <table class="setTbl listTbl" width="90%" cellpadding="0" cellspacing="0" border="0"> <tr><td width="15%">Industry:</td> <td width="85%"> <select name="industry_id" id="industry" onchange="document.distributers.submit();">   <option value="">Select an Industry...</option>   <?php do { ?> <?php   print "<option value=\"{$row_rs_industry['industry_id']}\"" . (isset($_GET['industry_id']) && $_GET['industry_id'] == $row_rs_industry['industry_id'] ? " selected>" : ">") .   "{$row_rs_industry['industry_name']}</option>\n";?>     <?php } while ($row_rs_industry = mysql_fetch_assoc($rs_industry)); ?> </select> </td></tr> <tr><td>Product category:</td><td> <?php if ($_GET['industry_id'] == null || $_GET['industry_id'] == "")  { ?> <select name="productCat_id" id="productcat" onchange="document.distributers.submit();" disabled>; <?php } else { mysql_select_db($database_conn_dj, $conn_dj); $query_rs_productcategory = "SELECT productCat_id, productCat_name, industry_id FROM tbl_productcat WHERE industry_id = '$_GET[industry_id]' ORDER BY productCat_name"; $rs_productcategory = mysql_query($query_rs_productcategory, $conn_dj) or die(mysql_error()); $row_rs_productcategory = mysql_fetch_assoc($rs_productcategory); $totalRows_rs_productcategory = mysql_num_rows($rs_productcategory); ?> <select name="productCat_id" id="productcat" onchange="document.distributers.submit();" >   <option value="">Select a product category...</option> <?php do {   print "<option value=\"{$row_rs_productcategory['productCat_id']}\"" . (isset($_GET['productCat_id']) && $_GET['productCat_id'] == $row_rs_productcategory['productCat_id'] ? " selected>" : ">") .   "{$row_rs_productcategory['productCat_name']}</option>\n"; } while ($row_rs_productcategory = mysql_fetch_assoc($rs_productcategory)); ?> </select> <?php } ?></td> <tr><td>Product:</td><td> <?php if ($_GET['productCat_id'] == null || $_GET['productCat_id'] == "" || ($_GET['industry_id'] == null || $_GET['industry_id'] == "")) { ?> <select name="products_id" id="products" onchange="document.distributers.submit();" disabled>; <?php } else { mysql_select_db($database_conn_dj, $conn_dj); $query_rs_product = "SELECT products_id, products_name, productCat_id FROM tbl_products WHERE productCat_id = '$_GET[productCat_id]' ORDER BY products_name"; $rs_product = mysql_query($query_rs_product, $conn_dj) or die(mysql_error()); $row_rs_product = mysql_fetch_assoc($rs_product); $totalRows_rs_product = mysql_num_rows($rs_product); ?> <select name="products_id" id="products" onchange="document.distributers.submit();" >   <option value="">Select a product...</option> <?php do {   print "<option value=\"{$row_rs_product['products_id']}\"" . (isset($_GET['products_id']) && $_GET['products_id'] == $row_rs_product['products_id'] ? " selected>" : ">") .   "{$row_rs_product['products_name']}</option>\n"; } while ($row_rs_product = mysql_fetch_assoc($rs_product)); ?> </select> <?php } ?> </td></tr> <tr><td>&nbsp;</td><td><input type="submit" value="Find" name="find"></td></tr>   </table> </form>[/code]
  2. unfortuinately no its just on our local  host...
  3. Hey maybe someone can help me with this i have tried all i know about it. I have 3 dropdowns all of which work correctly accept for one problem. When the user refreshes the first one and changes their choice it repopulates the second one like it should but the 3rd one isnt reset as well. How do i set the first one aka industry ot send a blank value to the url for both of the 2 corresponding menu's after it??? here is my code.. [code]<?php require_once('Connections/conn_dj.php'); ?> <?php mysql_select_db($database_conn_dj, $conn_dj); $query_rs_industry = "SELECT industry_id, industry_name FROM tbl_industry ORDER BY industry_name ASC"; $rs_industry = mysql_query($query_rs_industry, $conn_dj) or die(mysql_error()); $row_rs_industry = mysql_fetch_assoc($rs_industry); $totalRows_rs_industry = mysql_num_rows($rs_industry); mysql_select_db($database_conn_dj, $conn_dj); $query_rs_outsidena = "SELECT * FROM intl_countries ORDER BY intl_countries.name"; $rs_outsidena = mysql_query($query_rs_outsidena, $conn_dj) or die(mysql_error()); $row_rs_outsidena = mysql_fetch_assoc($rs_outsidena); $totalRows_rs_outsidena = mysql_num_rows($rs_outsidena); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>DICKEY-john Corporation | Distributors</title> <link href="_lib/sub.css" rel="stylesheet" type="text/css" /> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta name="keywords" content="Distributor, Sales, Purchase, U.S., International" /> <meta name="description" content="Enter your zip or postal code to find the DICKEY-john distributor nearest you." /> </head> <body> <div id="black">&nbsp;</div> <div id="siteContainer"> <?php include("_inc/topNav.inc"); ?> <div id="headerContainer">Distributors</div> <div class="divContainer"><div class="horizDiv"></div><img src="/_img/divEnd.png" alt="div" height="16" width="4" align="right" /></div> <div id="contentContainer"> <div id="fullContainer"> <div id="stretchCrumbs"> <a href="/index.php">Home</a> &#187; <a class="high" href="/distributors/">Distributors</a> </div> <h1>Distributors</h1> <p>Search for DICKEY-john distributers by specifying any combination of the<br /> following classifications: industry, product category, product, and state.</p> <br /> <br /> <h2>North America</h2> <form name="distributers">   <table class="setTbl listTbl" width="90%" cellpadding="0" cellspacing="0" border="0">     <tr><td width="15%">Industry:</td>     <td width="85%">     <select name="industry_id" id="industry" onchange="document.distributers.value='industry';document.distributers.submit();" >       <option value="">Select an Industry...</option>       <?php do { ?>     <?php   print "<option value=\"{$row_rs_industry['industry_id']}\"" .     (isset($_GET['industry_id']) && $_GET['industry_id'] == $row_rs_industry['industry_id'] ? " selected>" : ">") .   "{$row_rs_industry['industry_name']}</option>\n";?>             <?php } while ($row_rs_industry = mysql_fetch_assoc($rs_industry)); ?>         </select></td></tr> <tr><td>Product category:</td><td> <?php if ($_GET['industry_id'] == null || $_GET['industry_id'] == "") { ?> <select name="productCat_id" id="center" onchange="document.distributers.value='productCat_id';document.distributers.submit();" disabled>; <?php } else { mysql_select_db($database_conn_dj, $conn_dj); $query_rs_productcategory = "SELECT productCat_id, productCat_name, industry_id FROM tbl_productcat WHERE industry_id = '$_GET[industry_id]' ORDER BY productCat_name"; $rs_productcategory = mysql_query($query_rs_productcategory, $conn_dj) or die(mysql_error()); $row_rs_productcategory = mysql_fetch_assoc($rs_productcategory); $totalRows_rs_productcategory = mysql_num_rows($rs_productcategory); ?> <select name="productCat_id" id="center" onchange="document.distributers.value='productCat_id';document.distributers.submit();" >       <option value="">Select a product category...</option> <?php do {   print "<option value=\"{$row_rs_productcategory['productCat_id']}\"" .     (isset($_GET['productCat_id']) && $_GET['productCat_id'] == $row_rs_productcategory['productCat_id'] ? " selected>" : ">") .   "{$row_rs_productcategory['productCat_name']}</option>\n";     } while ($row_rs_productcategory = mysql_fetch_assoc($rs_productcategory)); ?>         </select> <?php } ?></td> <tr><td>Product:</td><td> <?php if ($_GET['productCat_id'] == null || $_GET['productCat_id'] == "" || $_GET['industry_id'] == null || $_GET['industry_id'] == "") { ?> <select name="product_id" id="center" onchange="document.distributers.value='products_id';document.distributers.submit();" disabled>; <?php } else { mysql_select_db($database_conn_dj, $conn_dj); $query_rs_product = "SELECT products_id, products_name, productCat_id FROM tbl_products WHERE productCat_id = '$_GET[productCat_id]' ORDER BY products_name"; $rs_product = mysql_query($query_rs_product, $conn_dj) or die(mysql_error()); $row_rs_product = mysql_fetch_assoc($rs_product); $totalRows_rs_product = mysql_num_rows($rs_product); ?> <select name="products_id" id="center" onchange="document.distributers.value='products_id';document.distributers.submit();" >       <option value="">Select a product...</option> <?php do {   print "<option value=\"{$row_rs_product['products_id']}\"" .     (isset($_GET['products_id']) && $_GET['products_id'] == $row_rs_product['products_id'] ? " selected>" : ">") .   "{$row_rs_product['products_name']}</option>\n";     } while ($row_rs_product = mysql_fetch_assoc($rs_product)); ?>         </select> <?php } ?> </td></tr>     <tr><td>&nbsp;</td><td><input type="submit" value="Find" name="find"></td></tr>           </table>     </form> <br /> <h2>Outside North America </h2> <table class="setTbl listTbl" width="90%" cellpadding="0" cellspacing="0" border="0"> <tr><td>            <select name="outna" id="center" onchange="javascript:document.centerform.submit()">         <option value="">Select a country...</option>                 <?php do { ?>         <?php   print "<option value=\"{$row_rs_outsidena['id']}\"" .     (isset($_GET['id']) && $_GET['id'] == $row_rs_outsidena['id'] ? " selected>" : ">") .   "{$row_rs_outsidena['name']}</option>\n";?>                           <?php } while ($row_rs_outsidena = mysql_fetch_assoc($rs_outsidena)); ?> </select>   </td></tr>       </table> </form> </div> </div> <?php include("_inc/footer.inc"); ?> </body> </html> <?php mysql_free_result($rs_industry); mysql_free_result($rs_productcategory); mysql_free_result($rs_product); mysql_free_result($rs_outsidena); ?> [/code]
  4. Hey is it possible to run a query and not allow the others to run until the ones above it have been executed like on page load i only want one thing to load and as the user submits then run the next on and so on here is my code if its possible ot change it i would appreciate any tips.. [code]mysql_select_db($database_conn_dj, $conn_dj); $query_rs_industry = "SELECT industry_id, industry_name FROM tbl_industry ORDER BY industry_name ASC"; $rs_industry = mysql_query($query_rs_industry, $conn_dj) or die(mysql_error()); $row_rs_industry = mysql_fetch_assoc($rs_industry); $totalRows_rs_industry = mysql_num_rows($rs_industry); mysql_select_db($database_conn_dj, $conn_dj); $query_rs_productcategory = "SELECT productCat_id, productCat_name, industry_id FROM tbl_productcat WHERE industry_id = '$_GET[industry_id]' ORDER BY productCat_name"; $rs_productcategory = mysql_query($query_rs_productcategory, $conn_dj) or die(mysql_error()); $row_rs_productcategory = mysql_fetch_assoc($rs_productcategory); $totalRows_rs_productcategory = mysql_num_rows($rs_productcategory); mysql_select_db($database_conn_dj, $conn_dj); $query_rs_product = "SELECT products_id, products_name, productCat_id FROM tbl_products WHERE productCat_id = '$_GET[productCat_id]' ORDER BY products_name"; $rs_product = mysql_query($query_rs_product, $conn_dj) or die(mysql_error()); $row_rs_product = mysql_fetch_assoc($rs_product); $totalRows_rs_product = mysql_num_rows($rs_product); mysql_select_db($database_conn_dj, $conn_dj); $query_rs_outsidena = "SELECT * FROM intl_countries ORDER BY intl_countries.name"; $rs_outsidena = mysql_query($query_rs_outsidena, $conn_dj) or die(mysql_error()); $row_rs_outsidena = mysql_fetch_assoc($rs_outsidena); $totalRows_rs_outsidena = mysql_num_rows($rs_outsidena);[/code]
  5. Hey I'm having a slight problem with my query of my php databse. It works but for some reason the code is messing up my css and totally enlarging the text until it submits the first time. After the first submit it works fine everything goes back to normal? here is my code any suggestions? [code]mysql_select_db($database_conn_dj, $conn_dj); $query_rs_productcategory = "SELECT productCat_id, productCat_name, industry_id FROM tbl_productcat WHERE industry_id = '$_GET[industry_id]' ORDER BY productCat_name"; $rs_productcategory = mysql_query($query_rs_productcategory, $conn_dj) or die(mysql_error()); $row_rs_productcategory = mysql_fetch_assoc($rs_productcategory); $totalRows_rs_productcategory = mysql_num_rows($rs_productcategory); mysql_select_db($database_conn_dj, $conn_dj); $query_rs_product = "SELECT products_id, products_name, productCat_id FROM tbl_products WHERE productCat_id = '$_GET[productCat_id]' ORDER BY products_name"; $rs_product = mysql_query($query_rs_product, $conn_dj) or die(mysql_error()); $row_rs_product = mysql_fetch_assoc($rs_product); $totalRows_rs_product = mysql_num_rows($rs_product); [/code]
  6. now i get ... Parse error: syntax error, unexpected '{', expecting ',' or ';' in /u/internet/com/dickeyjohn/test.php on line 76 and [code] <?php do { ?>     <option value="<?=$row_rs_industry['industry_id'];?>"<?=(isset($_GET['industry_id']) && $_GET['industry_id'] == $row_rs_industry['industry_id']) { ?> selected<?php } ?>><?=$row_rs_industry['industry_name'];?></option>[/code] thats the line of code
  7. Hey on one of my projects i keep getting undefined indexes because the user has to select a drop down value first how do i just give it a fake value like test or something ahead of time??
  8. I'm getting undefined indexes how do i give it a value thats blank until the user selects the option like initialize it as like true or something...
  9. Well my english doenst exactly have anything to do with my problem can you help me with my problem i'm having?
  10. Thanks so much that got it!!! Accept for one thing it defaults back to the original value aka in this case Agriculture instead of taking like number 2 or 3 and making it work.. any suggestions here is my code in full... [code]<?php require_once('Connections/conn_dj.php'); ?> <?php mysql_select_db($database_conn_dj, $conn_dj); $query_rs_industry = "SELECT * FROM tbl_industry ORDER BY industry_name ASC"; $rs_industry = mysql_query($query_rs_industry, $conn_dj) or die(mysql_error()); $row_rs_industry = mysql_fetch_assoc($rs_industry); $totalRows_rs_industry = mysql_num_rows($rs_industry); mysql_select_db($database_conn_dj, $conn_dj); $query_rs_productcategory = "SELECT * FROM `tbl_productcat` WHERE `industry_id` = '$_GET[industry_id]' ORDER BY `productCat_name`"; $rs_productcategory = mysql_query($query_rs_productcategory, $conn_dj) or die(mysql_error()); $row_rs_productcategory = mysql_fetch_assoc($rs_productcategory); $totalRows_rs_productcategory = mysql_num_rows($rs_productcategory); mysql_select_db($database_conn_dj, $conn_dj); $query_rs_product = "SELECT * FROM `tbl_products` WHERE `productCat_id` = '$_GET[productCat_id]' ORDER BY `products_name`"; $rs_product = mysql_query($query_rs_product, $conn_dj) or die(mysql_error()); $row_rs_product = mysql_fetch_assoc($rs_product); $totalRows_rs_product = mysql_num_rows($rs_product); mysql_select_db($database_conn_dj, $conn_dj); $query_rs_outsidena = "SELECT * FROM intl_countries ORDER BY intl_countries.name"; $rs_outsidena = mysql_query($query_rs_outsidena, $conn_dj) or die(mysql_error()); $row_rs_outsidena = mysql_fetch_assoc($rs_outsidena); $totalRows_rs_outsidena = mysql_num_rows($rs_outsidena); mysql_select_db($database_conn_dj, $conn_dj); $query_rs_state = "SELECT * FROM tbl_states ORDER BY tbl_states.`state`"; $rs_state = mysql_query($query_rs_state, $conn_dj) or die(mysql_error()); $row_rs_state = mysql_fetch_assoc($rs_state); $totalRows_rs_state = mysql_num_rows($rs_state); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>DICKEY-john Corporation | Distributors</title> <link href="_lib/sub.css" rel="stylesheet" type="text/css" /> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta name="keywords" content="Distributor, Sales, Purchase, U.S., International" /> <meta name="description" content="Enter your zip or postal code to find the DICKEY-john distributor nearest you." /> </head> <body> <div id="black">&nbsp;</div> <div id="siteContainer"> <?php include("_inc/topNav.inc"); ?> <div id="headerContainer">Distributors</div> <div class="divContainer"><div class="horizDiv"></div><img src="/_img/divEnd.png" alt="div" height="16" width="4" align="right" /></div> <div id="contentContainer"> <div id="fullContainer"> <div id="stretchCrumbs"> <a href="/index.php">Home</a> &#187; <a class="high" href="/distributors/">Distributors</a> </div> <h1>Distributors</h1> <p>Search for DICKEY-john distributers by specifying any combonation of the<br /> following classifications: industry, product category, product, and state.</p> <br /> <br /> <h2>North America</h2> <form name="distributers">   <table class="setTbl listTbl" width="90%" cellpadding="0" cellspacing="0" border="0">     <tr><td width="15%">Industry:</td>     <td width="85%">     <select name="industry_id" id="industry" onchange="document.distributers.value='industry';document.distributers.submit();" >             <?php do { ?>     <option value="<?=$row_rs_industry['industry_id'];?>"<?=(isset($_POST['industry_id']) && $_POST['industry_id'] == $row_rs_industry['industry_id'] ? " selected='selected'" : null);?>><?=$row_rs_industry['industry_name'];?></option>             <?php } while ($row_rs_industry = mysql_fetch_assoc($rs_industry)); ?>         </select></td></tr> <tr><td>Product category:</td><td> <select name="productCat_id" id="center" onchange="document.distributers.value='productCat_id';document.distributers.submit();" >       <option value="">Select a product category...</option> <?php do { ?>     <option value="<?=$row_rs_productcategory['productCat_id'];?>"<?=(isset($_POST['productCat_id']) && $_POST['productCat_id'] == $row_rs_productcategory['productCat_id'] ? " selected='selected'" : null);?>><?=$row_rs_productcategory['productCat_name'];?></option>             <?php } while ($row_rs_productcategory = mysql_fetch_assoc($rs_productcategory)); ?>         </select> <tr><td>Products:</td><td>     <select name="product" id="center" onchange="document.distributers.value='products_id';document.distributers.submit();" >       <option value="">Select a product...</option> <?php do { ?>     <option value="<?=$row_rs_product['products_id'];?>"<?=(isset($_POST['product']) && $_POST['product'] == $row_rs_product['products_id'] ? " selected='selected'" : null);?>><?=$row_rs_product['products_name'];?></option>       <?php } while ($row_rs_product = mysql_fetch_assoc($rs_product)); ?>     </select> <tr><td>State:</td><td>     <select name="state" id="center" > <option value="">Select a state...</option> <?php do { ?>       <option value="<?php echo $row_rs_state['state']; ?>"><?php echo $row_rs_state['state']; ?></option>       <?php } while ($row_rs_state = mysql_fetch_assoc($rs_state)); ?>     </select> </td></tr>     <tr><td>&nbsp;</td><td><input class="PythonButton" type="submit" value="Find" name="{Button_Name}"></td></tr>           </table>     </form> <br /> <h2>Outside North America </h2> <table class="setTbl listTbl" width="90%" cellpadding="0" cellspacing="0" border="0"> <tr><td>  <select name="outna" id="center" onchange="javascript:document.centerform.submit()">       <option value="">Select a country...</option>       <?php do { ?>       <option value="<?php echo $row_rs_ousidena['name']; ?>"><?php echo $row_rs_outsidena['name']; ?></option>       <?php } while ($row_rs_outsidena = mysql_fetch_assoc($rs_outsidena)); ?>             </select></td>     </tr></td></tr>       </table> </form> </div> </div> <?php include("_inc/footer.inc"); ?> </body> </html> <?php mysql_free_result($rs_industry); mysql_free_result($rs_productcategory); mysql_free_result($rs_product); mysql_free_result($rs_outsidena); mysql_free_result($rs_state); ?> [/code]
  11. Hey I have 3 questions in one here. First off when my dropdowns submit their value and the page refreshes they go back to their original value which says select a value but I want them to stay on the value the user selects. Also if the user refreshes the page or changes the value of one of the dropdowns I want all the corresponding ones below to automatically repopulate. Finally I want them to be disabled until a user selects the value that will populate it and I am having issues with the if loops. Can someone look at this code and help me with this stuff? [code]<form name="distributers">   <table class="setTbl listTbl" width="90%" cellpadding="0" cellspacing="0" border="0">     <tr><td>Industry:</td><td>         <select name="industry_id" id="industry" onchange="document.distributers.value='industry';document.distributers.submit();" >       <option value="">Select an Industry...</option>       <?php do { ?>       <option value="<?php echo $row_rs_industry['industry_id']; ?>"><?php echo $row_rs_industry['industry_name']; ?></option>             <?php } while ($row_rs_industry = mysql_fetch_assoc($rs_industry)); ?>         </select></td></tr> <tr><td>Product category:</td><td> <select name="productCat_id" id="center" onchange="document.distributers.value='productCat_id';document.distributers.submit();" >       <option value="">Select a product category...</option> <?php do { ?>       <option value="<?php echo $row_rs_productcategory['productCat_id']; ?>"><?php echo $row_rs_productcategory['productCat_name']; ?></option>             <?php } while ($row_rs_productcategory = mysql_fetch_assoc($rs_productcategory)); ?>         </select> <tr><td>Products:</td><td>     <select name="product" id="center" onchange="document.distributers.value='products_id';document.distributers.submit();" >       <option value="">Select a product...</option> <?php do { ?>       <option value="<?php echo $row_rs_product['products_id']; ?>"><?php echo $row_rs_product['products_name']; ?></option>       <?php } while ($row_rs_product = mysql_fetch_assoc($rs_product)); ?>     </select> <tr><td>State:</td><td>     <select name="state" id="center" > <option value="">Select a state...</option> <?php do { ?>       <option value="<?php echo $row_rs_state['state']; ?>"><?php echo $row_rs_state['state']; ?></option>       <?php } while ($row_rs_state = mysql_fetch_assoc($rs_state)); ?>     </select> </td></tr>     <tr><td>&nbsp;</td><td><input class="PythonButton" type="submit" value="Find" name="{Button_Name}"></td></tr>           </table>     </form> [/code]
  12. Hey guys this might be just a noob question but in my sql query for the database how do i set it to say like where industry = and then the id number from the url for its query?
  13. Hey guys right now i have a file that has dropdowns that use javascript and i want to change them to be dependent on teh database like for example, When the user selects the industry from dropdown 1 it will then go to the database and find all the entries with the id from that industry and send them to dropdown 2 which is the product category list. When the user then selects a product category it will move on to the next list based on the id they selected and populate the product list. Would anyone be able to help me edit the js to match this? [code]addListGroup("vehicles", "industry"); addList("industry", "Select an industry", "", "dummy-maker", 1); addList("industry", "Agriculture", "Agriculture", "Agriculture"); addList("industry", "Analytical", "Analytical", "Analytical"); addList("industry", "Public Works", "Public Works", "Public Works"); addList("dummy-maker", "Select an industry", "", "dummy-car"); addOption("dummy-car", "Select an industry", ""); addList("Agriculture", "Select a product category", "", "dummy-ag", 1); addList("Agriculture", "Agriculture Material Application Controllers", "mac", "Agriculture Material Application Controllers"); addList("Agriculture", "Agriculture Grain Analyzers", "ga", "Agriculture Grain Analyzers"); addList("Agriculture", "Soil Compaction Testers", "sct", "Soil Compaction Testers"); addList("Agriculture", "Agriculture Ground Speed Sensors", "gss", "Agriculture Ground Speed Sensors"); addList("Agriculture", "Agriculture Testing Equimpment", "te", "Agriculture Testing Equimpment"); addList("Agriculture", "Guidance Systems", "gs", "Guidance Systems"); addList("Agriculture", "Agriculture Moisture Testers", "mt", "Agriculture Moisture Testers"); addList("Agriculture", "Planter/Grain Drill/Air Cart Monitors", "pgcm", "Planter/Grain Drill/Air Cart Monitors"); addList("Agriculture", "Agriculture Accessories", "acc", "Agriculture Accessories"); addOption("dummy-ag", "Select a product category", ""); addOption("Agriculture Material Application Controllers", "Select a product", "", 1); addOption("Agriculture Material Application Controllers", "CCS100", "CCS100"); addOption("Agriculture Material Application Controllers", "CMS100", "CMS100"); addOption("Agriculture Material Application Controllers", "IntelliAg", "IntelliAg"); addOption("Agriculture Material Application Controllers", "Land Manager", "Land Manager"); addOption("Agriculture Material Application Controllers", "Land Manager II", "Land Manager II"); addOption("Agriculture Material Application Controllers", "Land Manager SE", "Land Manager SE"); addOption("Agriculture Grain Analyzers", "Select a product", "", 1); addOption("Agriculture Grain Analyzers", "Instalab 600", "Instalab 600"); addOption("Soil Compaction Testers", "Select a product", "", 1); addOption("Soil Compaction Testers", "Soil Compaction Tester", "Soil Compaction Tester"); addOption("Agriculture Ground Speed Sensors", "Select a product", "", 1); addOption("Agriculture Ground Speed Sensors", "Hall Effect Sensor", "Hall Effect Sensor"); addOption("Agriculture Ground Speed Sensors", "iSpeed", "iSpeed"); addOption("Agriculture Ground Speed Sensors", "Radar II", "Radar II"); addOption("Agriculture Ground Speed Sensors", "Radar III", "Radar III"); addOption("Agriculture Ground Speed Sensors", "Universal Speed Sensor", "Universal Speed Sensor"); addOption("Agriculture Testing Equimpment", "Select a product", "", 1); addOption("Agriculture Testing Equimpment", "Application Rate Sensor Tester", "Application Rate Sensor Tester"); addOption("Agriculture Testing Equimpment", "Seed Simulator", "Seed Simulator"); addOption("Agriculture Testing Equimpment", "Sensor Tester 90", "Sensor Tester 90"); addOption("Agriculture Testing Equimpment", "Vehicle Ground Speed Simulator 200", "Vehicle Ground Speed Simulator 200"); addOption("Guidance Systems", "Select a product", "", 1); addOption("Guidance Systems", "FieldGuide Lightbar", "FieldGuide Lightbar"); addOption("Agriculture Moisture Testers", "Select a product", "", 1); addOption("Agriculture Moisture Testers", "Dj C-2000-PKGS1 Cotton Moisture Tester", "Dj C-2000-PKGS1 Cotton Moisture Tester"); addOption("Agriculture Moisture Testers", "Dj F-2000-1235S1 Hay Moisture Tester", "Dj F-2000-1235S1 Hay Moisture Tester"); addOption("Agriculture Moisture Testers", "Dj FX-2000S1 Hay Moisture Tester", "Dj FX-2000S1 Hay Moisture Tester"); addOption("Agriculture Moisture Testers", "GAC2100 Agri", "GAC2100 Agri"); addOption("Agriculture Moisture Testers", "GAC500 XT", "GAC500 XT"); addOption("Agriculture Moisture Testers", "Harvest Hand", "Harvest Hand"); addOption("Agriculture Moisture Testers", "M20P", "M20P"); addOption("Agriculture Moisture Testers", "M3G", "M3G"); addOption("Planter/Grain Drill/Air Cart Monitors", "Select a product", "", 1); addOption("Planter/Grain Drill/Air Cart Monitors", "DjASM II", "DjASM II"); addOption("Planter/Grain Drill/Air Cart Monitors", "DM100", "DM100"); addOption("Planter/Grain Drill/Air Cart Monitors", "PM100 and PM100E", "PM100 and PM100E"); addOption("Planter/Grain Drill/Air Cart Monitors", "PM300", "PM300"); addOption("Planter/Grain Drill/Air Cart Monitors", "PM400", "PM400"); addOption("Planter/Grain Drill/Air Cart Monitors", "PM500", "PM500"); addOption("Planter/Grain Drill/Air Cart Monitors", "Seed Manager SE", "Seed Manager SE"); addOption("Agriculture Accessories", "Select a product", "", 1); addOption("Agriculture Accessories", "10-Inch Handle Prod", "10-Inch Handle Prod"); addOption("Agriculture Accessories", "10-Inch Prod", "10-Inch Prod"); addOption("Agriculture Accessories", "18-Inch Handle Prod", "18-Inch Handle Prod"); addOption("Agriculture Accessories", "36-Inch Handle Prod", "36-Inch Handle Prod"); addOption("Agriculture Accessories", "36-Inch T-Handle", "36-Inch T-Handle"); addOption("Agriculture Accessories", "Accessory Module", "Accessory Module"); addOption("Agriculture Accessories", "Air Pressure Sensor", "Air Pressure Sensor"); addOption("Agriculture Accessories", "Application Rate Sensor", "Application Rate Sensor"); addOption("Agriculture Accessories", "Baled Fiber Probe", "Baled Fiber Probe"); addOption("Agriculture Accessories", "Baler Sensor", "Baler Sensor"); addOption("Agriculture Accessories", "Boom Controller", "Boom Controller"); addOption("Agriculture Accessories", "Carrying Case", "Carrying Case"); addOption("Agriculture Accessories", "Cone & Skein Fiber Probe", "Cone & Skein Fiber Probe"); addOption("Agriculture Accessories", "Continental Magnum Equalizer NH3 Heat Exchanger System/Kit", "Continental Magnum Equalizer NH3 Heat Exchanger System/Kit"); addOption("Agriculture Accessories", "Cotton Ball Cup", "Cotton Ball Cup"); addOption("Agriculture Accessories", "Flow Meters", "Flow Meters"); addOption("Agriculture Accessories", "Hall Effect Sensor", "Hall Effect Sensor"); addOption("Agriculture Accessories", "Handle", "Handle"); addOption("Agriculture Accessories", "High-Rate Seed Sensor", "High-Rate Seed Sensor"); addOption("Agriculture Accessories", "Hopper Level Sensor", "Hopper Level Sensor"); addOption("Agriculture Accessories", "Implement Lift Switch", "Implement Lift Switch"); addOption("Agriculture Accessories", "Liquid Flow Control Valves", "Liquid Flow Control Valves"); addOption("Agriculture Accessories", "Liquid Pressure Sensor", "Liquid Pressure Sensor"); addOption("Agriculture Accessories", "Proportional Hydraulic Flow Control Valves", "Proportional Hydraulic Flow Control Valves"); addOption("Agriculture Accessories", "Recon Flow Sensor", "Recon Flow Sensor"); addOption("Agriculture Accessories", "Servo Hydraulic Flow Control Valves", "Servo Hydraulic Flow Control Valves"); addOption("Agriculture Accessories", "Short-Pin Prod", "Short-Pin Prod"); addOption("Agriculture Accessories", "Split Baler Sensor", "Split Baler Sensor"); addOption("Agriculture Accessories", "Strap-On Recon Flow Sensor", "Strap-On Recon Flow Sensor"); addOption("Agriculture Accessories", "TSM-10 Tachometer Shaft Monitor/Speed-Engine Hour Indicator", "TSM-10 Tachometer Shaft Monitor/Speed-Engine Hour Indicator"); addOption("Agriculture Accessories", "Valve Actuator", "Valve Actuator"); addOption("Agriculture Accessories", "Vapor/Bubble Detector", "Vapor/Bubble Detector"); addList("Analytical", "Select product category", "", "dummy-an", 1); addList("Analytical", "Analytical Moisture Testers", "amt", "Analytical Moisture Testers"); addList("Analytical", "Analytical Grain Analyzers", "ga", "Analytical Grain Analyzers"); addList("Analytical", "Dewpoint Detectors", "dpt", "Dewpoint Detectors"); addList("Analytical", "Analytical Accessories", "acc", "Analytical Accessories"); addOption("dummy-an", "Select a product category", ""); addOption("Analytical Moisture Testers", "Select a product", "", 1); addOption("Analytical Moisture Testers", "Dj C-2000-PKGS1 Cotton Moisture Tester", "Dj C-2000-PKGS1 Cotton Moisture Tester"); addOption("Analytical Moisture Testers", "Dj F-2000-1235S1 Hay Moisture Tester", "Dj F-2000-1235S1 Hay Moisture Tester"); addOption("Analytical Moisture Testers", "Dj FX-2000S1 Hay Moisture Tester", "Dj FX-2000S1 Hay Moisture Tester"); addOption("Analytical Moisture Testers", "GAC2100 Agri", "GAC2100 Agri"); addOption("Analytical Moisture Testers", "GAC2100 GI", "GAC2100 GI"); addOption("Analytical Moisture Testers", "GAC2100b", "GAC2100b"); addOption("Analytical Moisture Testers", "GAC500 XT", "GAC500 XT"); addOption("Analytical Grain Analyzers", "Select a product", "", 1); addOption("Analytical Grain Analyzers", "Instalab 600", "Instalab 600"); addOption("Analytical Grain Analyzers", "OmegAnalyzer G", "OmegAnalyzer G"); addOption("Dewpoint Detectors", "Select a product", "", 1); addOption("Dewpoint Detectors", "Alnor Dewpointer", "Alnor Dewpointer"); addOption("Analytical Accessories", "Select a product", "", 1); addOption("Analytical Accessories", "10-Inch Handle Prod", "10-Inch Handle Prod"); addOption("Analytical Accessories", "10-Inch Prod", "10-Inch Prod"); addOption("Analytical Accessories", "18-Inch Handle Prod", "18-Inch Handle Prod"); addOption("Analytical Accessories", "36-Inch Handle Prod", "36-Inch Handle Prod"); addOption("Analytical Accessories", "36-Inch T-Handle", "36-Inch T-Handle"); addOption("Analytical Accessories", "Baled Fiber Probe", "Baled Fiber Probe"); addOption("Analytical Accessories", "Baler Sensor", "Baler Sensor"); addOption("Analytical Accessories", "Carrying Case", "Carrying Case"); addOption("Analytical Accessories", "Cone & Skein Fiber Probe", "Cone & Skein Fiber Probe"); addOption("Analytical Accessories", "Cotton Ball Cup", "Cotton Ball Cup"); addOption("Analytical Accessories", "Handle", "Handle"); addOption("Analytical Accessories", "Short-Pin Prod", "Short-Pin Prod"); addOption("Analytical Accessories", "Split Baler Sensor", "Split Baler Sensor"); addList("Public Works", "Select product category", "", "dummy-pw", 1); addList("Public Works", "Public Works Material Application Controllers", "pwmac", "Public Works Material Application Controllers"); addList("Public Works", "Automatic Vehicle Locators", "avl", "Automatic Vehicle Locators"); addList("Public Works", "Proportional Joystick Controllers", "pjc", "Proportional Joystick Controllers"); addList("Public Works", "Public Works Ground Speed Sensors", "pwgss", "Public Works Ground Speed Sensors"); addList("Public Works", "Public Works Accessories", "pwacc", "Public Works Accessories"); addList("Public Works", "Public Works Testing Equimpment", "pwte", "Public Works Testing Equimpment"); addList("Public Works", "Ground Speed Adapters", "gsa", "Ground Speed Adapters"); addOption("dummy-pw", "Select a product category", ""); addOption("Public Works Material Application Controllers", "Select a product", "", 1); addOption("Public Works Material Application Controllers", "CCS100 Application Controller", "CCS100 Application Controller"); addOption("Public Works Material Application Controllers", "CMS100 Application Monitor", "CMS100 Application Monitor"); addOption("Public Works Material Application Controllers", "Control Point Control System", "Control Point Control System"); addOption("Public Works Material Application Controllers", "ICS2000 Control System", "ICS2000 Control System"); addOption("Public Works Material Application Controllers", "LT Control Application Controller", "LT Control Application Controller"); addOption("Automatic Vehicle Locators", "Select a product", "", 1); addOption("Automatic Vehicle Locators", "Fleet Finder Automatic Vehicle Locator", "Fleet Finder Automatic Vehicle Locator"); addOption("Proportional Joystick Controllers", "Select a product", "", 1); addOption("Proportional Joystick Controllers", "ControlKING Proportional Joystick Controller", "ControlKING Proportional Joystick Controller"); addOption("Public Works Ground Speed Sensors", "Select a product", "", 1); addOption("Public Works Ground Speed Sensors", "iSpeed", "iSpeed"); addOption("Public Works Ground Speed Sensors", "Mechanical Speedometer Sensor", "Mechanical Speedometer Sensor"); addOption("Public Works Ground Speed Sensors", "Radar II", "Radar II"); addOption("Public Works Ground Speed Sensors", "Radar III", "Radar III"); addOption("Public Works Accessories", "Select a product", "", 1); addOption("Public Works Accessories", "12-Volt Valve Relay Driver", "12-Volt Valve Relay Driver"); addOption("Public Works Accessories", "Application Rate Sensor", "Application Rate Sensor"); addOption("Public Works Accessories", "Boom Controller", "Boom Controller"); addOption("Public Works Accessories", "Calibration Keyboard", "Calibration Keyboard"); addOption("Public Works Accessories", "DaRT Data Retrieval Tool", "DaRT Data Retrieval Tool"); addOption("Public Works Accessories", "Down Pressure Sensor", "Down Pressure Sensor"); addOption("Public Works Accessories", "Dual Drop-On Valve Actuator", "Dual Drop-On Valve Actuator"); addOption("Public Works Accessories", "Dual Pulse-Width Modulated Valve Driver", "Dual Pulse-Width Modulated Valve Driver"); addOption("Public Works Accessories", "Flow Meters", "Flow Meters"); addOption("Public Works Accessories", "Gate Height Sensor", "Gate Height Sensor"); addOption("Public Works Accessories", "Hopper Level Sensor", "Hopper Level Sensor"); addOption("Public Works Accessories", "Liquid Flow Control Valves", "Liquid Flow Control Valves"); addOption("Public Works Accessories", "Liquid Pressure Sensor", "Liquid Pressure Sensor"); addOption("Public Works Accessories", "Prewet Anti-Ice Switch", "Prewet Anti-Ice Switch"); addOption("Public Works Accessories", "Proportional Hydraulic Flow Control Valves", "Proportional Hydraulic Flow Control Valves"); addOption("Public Works Accessories", "Proportional Hydraulic Spreader Control Valve", "Proportional Hydraulic Spreader Control Valve"); addOption("Public Works Accessories", "Remote Blast Switch", "Remote Blast Switch"); addOption("Public Works Accessories", "Road Watch Pavement and Air Temperature Sensor", "Road Watch Pavement and Air Temperature Sensor"); addOption("Public Works Accessories", "Rotary Flow Meters", "Rotary Flow Meters"); addOption("Public Works Accessories", "Servo Hydraulic Flow Control Valves", "Servo Hydraulic Flow Control Valves"); addOption("Public Works Accessories", "Spinner RPM Sensor", "Spinner RPM Sensor"); addOption("Public Works Accessories", "Universal Printer", "Universal Printer"); addOption("Public Works Accessories", "Valve Actuator", "Valve Actuator"); addOption("Public Works Testing Equimpment", "Select a product", "", 1); addOption("Public Works Testing Equimpment", "Application Rate Sensor Tester", "Application Rate Sensor Tester"); addOption("Public Works Testing Equimpment", "Universal Proportional Simulator", "Universal Proportional Simulator"); addOption("Public Works Testing Equimpment", "Vehicle Ground Speed Simulator 200", "Vehicle Ground Speed Simulator 200"); addOption("Ground Speed Adapters", "Select a product", "", 1); addOption("Ground Speed Adapters", "Chevy/Dodge/Ford/GMC (Spade Terminal)", "Chevy/Dodge/Ford/GMC (Spade Terminal)"); addOption("Ground Speed Adapters", "Chevy/Dodge/Ford/GMC (Weather Pack Connector)", "Chevy/Dodge/Ford/GMC (Weather Pack Connector)"); addOption("Ground Speed Adapters", "Ground Speed Isolation Buffer", "Ground Speed Isolation Buffer"); addOption("Ground Speed Adapters", "International/Ford", "International/Ford"); addOption("Ground Speed Adapters", "Manual Transmission (Deutsch Connector)", "Manual Transmission (Deutsch Connector)"); addOption("Ground Speed Adapters", "Non-World Transmission (Beede/Ford)", "Non-World Transmission (Beede/Ford)"); addOption("Ground Speed Adapters", "Non-World Transmission (Metrapack Connector)", "Non-World Transmission (Metrapack Connector)"); addOption("Ground Speed Adapters", "World Transmission (Fly Lead)", "World Transmission (Fly Lead)"); addOption("Ground Speed Adapters", "World Transmission (Non-Fly Lead)", "World Transmission (Non-Fly Lead)"); addOption("Ground Speed Adapters", "World Transmission (Ring Terminal)", "World Transmission (Ring Terminal)");[/code]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.