Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Need to Add Dropdown box for quantities on product page


flyhead

Recommended Posts

I had a freelancer create this order form however he did not finish all the quantities. We need to add 2500, 3000, 4000 and 5000, but I am unsure how to add or where to add them. Any ideas? Here's one of the URL address with the coding he made. Any help would be appreciated.

 

http://www.masterdatachecks.com/catalog/fo...products_id=165

 

Thanks

 

<?php
/*
 $Id: product_info.php,v 1.97 2003/07/01 14:34:54 hpdl Exp $

 osCommerce, Open Source E-Commerce Solutions
 [url="http://www.oscommerce.com"]http://www.oscommerce.com[/url]

 Copyright © 2003 osCommerce

 Released under the GNU General Public License
*/

 require('includes/application_top.php');

// --- coderXO ------------------------------------//	

if(!in_array($_GET['products_id'],$ps_id ))
  tep_redirect('product_info.php?products_id='.$_GET['products_id']);

// --- coderXO ------------------------------------//	

 require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO);

 $product_check_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
 $product_check = tep_db_fetch_array($product_check_query);
?>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html <?php echo HTML_PARAMS; ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
<title><?php echo TITLE; ?></title>
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script language="javascript"><!--
function popupWindow(url) {
 window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,res
izable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,le
ft=150')
}

function upform(tog) {

	   var d = document.getElementById('upf');

 			if(tog)
				d.style.display = "block";
			else
				d.style.display = "none";

}

function validate() {
var err = false;

for(i=1;i<=5;i++){

  var tmp     = 'color'+i;
 var d   = document.getElementById(tmp);
 if(d.checked)
  err = true;

}

if(err == false )
{ alert('Please choose a color');d.focus(); return false; }


var line1 = document.getElementById('line1');
if (line1.value.length < 3) {

   alert('Enter first line on check'); line1.focus(); return false;

}

var line2 = document.getElementById('line2');
if (line2.value.length < 3) {

   alert('Enter second line on check'); line2.focus(); return false;

} 

var line3 = document.getElementById('line3');
if (line3.value.length < 3) {

   alert('Enter bank name'); line3.focus(); return false;

} 

var line4 = document.getElementById('line4');
if (line4.value.length != 9) {

   alert('Enter bank 9-digit routing number'); line4.focus(); return false;

}  


var line5 = document.getElementById('line5');
if (line5.value.length < 3) {

   alert('Enter bank account number'); line5.focus(); return false;

}  

var line6 = document.getElementById('line6');
if (line6.value.length < 2) {

   alert('Enter bank fraction'); line6.focus(); return false;

} 

var line7 = document.getElementById('line7');
if (line7.value.length < 2) {

   alert('Enter check starting number'); line7.focus(); return false;

}  

return err;

}


//--></script>
</head>
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<!-- header //-->
<?php require(DIR_WS_INCLUDES . 'header.php'); ?>
<!-- header_eof //-->

<!-- body //-->
<table border="0" width="100%" cellspacing="3" cellpadding="3">
 <tr>

<!-- body_text //-->
   <td width="100%" colspan="2" valign="top"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product'),'post',' onSubmit="return validate()" enctype="multipart/form-data"'); ?><table border="0" width="100%" cellspacing="0" cellpadding="0">
<?php
 if ($product_check['total'] < 1) {
?>
     <tr>
       <td><?php new infoBox(array(array('text' => TEXT_PRODUCT_NOT_FOUND))); ?></td>
     </tr>
     <tr>
       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
     </tr>
     <tr>
       <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
         <tr class="infoBoxContents">
           <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
             <tr>
               <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
               <td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>
               <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
             </tr>
           </table></td>
         </tr>
       </table></td>
     </tr>
<?php
 } else {
   $product_info_query = tep_db_query("select p.products_id, pd.products_name, pd.products_description, p.products_model, p.products_quantity, p.products_image, pd.products_url, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
   $product_info = tep_db_fetch_array($product_info_query);

   tep_db_query("update " . TABLE_PRODUCTS_DESCRIPTION . " set products_viewed = products_viewed+1 where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and language_id = '" . (int)$languages_id . "'");

   $pf->loadProduct((int)$HTTP_GET_VARS['products_id'], (int)$languages_id);
   $products_price=$pf->getPriceString();

   if (tep_not_null($product_info['products_model'])) {
     $products_name = $product_info['products_name'] . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>';
   } else {
     $products_name = $product_info['products_name'];
   }
?>
     <tr>
       <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
         <tr>
           <td class="pageHeading" valign="top"><?php echo $products_name; ?></td>
           <td class="pageHeading" align="right" valign="top"><?php echo $products_price; ?></td>
         </tr>
       </table></td>
     </tr>
     <tr>
       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
     </tr>
     <tr>
       <td class="main">
<?php
   if (tep_not_null($product_info['products_image'])) {
?>
         <table border="0" cellspacing="0" cellpadding="2" align="right">
           <tr>
             <td align="center" class="smallText">
<script language="javascript"><!--
document.write('<?php echo '<a href="java script:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\\\')">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>');
//--></script>
<noscript>
<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>
</noscript>
             </td>
           </tr>
         </table>
<?php
   }
?>

<?php
 if ($_SESSION['error_message'] ) {
    session_unset('error_message');
   print "<p><div style='width:70%;background-color:#ffcccc;color:red;border: solid 1px red'>   GIFs JPGs or PNGs only for images </div> </p>\n";
 }
?>



        <p>
				<?php  
				 echo '<table width="50%"><tr><td class="main">'.stripslashes($product_info['products_description']).'</table>'; 
				?>
				</p>





				<p>Quantity & Cost <select name='cart_quantity'>   
				                    <?php

														for($z=1; $z<=sizeof($pf->quantity);$z++) {

														  print "<option value='".$pf->quantity[$z]."'>".$pf->quantity[$z]." checks - ".$currencies->display_price($pf->quantity[$z]*$pf->price[$z])."</option>\n";	

													  }

													 ?></select>
													 </p>

					<p>Please choose a color</p>

					<table width="70%" cellspacing="7">
					<tr>
					  <td class="main"  nowrap width="20%" align="center">


						    <img width=50 src='images/Bluesep.JPG' > <br>

								<input type='radio' name='id[1]' value='2' id='color1' /><br> Blue



						</td>
					  <td class="main"  nowrap width="20%" align="center">


						    <img width="50" src='images/Brownsep.JPG'> <br>

								<input type='radio' name='id[1]' value='4'  id='color2' /><br> Brown



						</td>							
					  <td class="main"  nowrap width="20%" align="center">


						    <img width=50 src='images/Greensep.JPG' > <br>

								<input type='radio' name='id[1]' value='3' id='color3' /> <br>Green



						</td>						
					  <td class="main"  nowrap width="20%" align="center">


						    <img width=50 src='images/Maroonsep.JPG' > <br>

								<input type='radio' name='id[1]' value='1' id='color4' /><br> Maroon



						</td>						
					  <td class="main"  nowrap width="20%" align="center">


						    <img width=50 src='images/Redsep.JPG'> <br>

								<input type='radio' name='id[1]' value='5' id='color5' /><br> Red



						</td>						
					</table>								 
					<h3>CHECK IMPRINT INFORMATION</h3>								 
					<table width="70%" cellspacing="7">
					<tr>
							<td width="45%" class="main"> First Line on check* 
							<td> <input type='text' name='data[First_Line]' size='30' maxlength='42' id='line1'  />
					</tr>
					<tr>
							<td width="45%" class="main"> Second Line on check* 
							<td> <input type='text' name='data[second_Line]' size='30' maxlength='42' id='line2' />
					</tr>	
					<tr>
							<td width="45%" class="main"> Third Line on check 
							<td> <input type='text' name='data[Third_Line]' size='30' />
					</tr>		
					<tr>
							<td width="45%" class="main"> Fourth Line on check 
							<td> <input type='text' name='data[Fourth_Line]' size='30' />
					</tr>			
					<tr>
							<td width="45%" class="main"> Fifth Line on check 
							<td> <input type='text' name='data[Fifth_Line]' size='30' />
					</tr>
					</table>		
					<b>Bank Information</b>

					<table width="70%" cellspacing="7">
					<tr>
							<td width="45%" class="main"> Bank name* 
							<td> <input type='text' name='data[bank_Name]' size='30' maxlength='40' id='line3' />
					</tr>
					<tr>
							<td width="45%" class="main"> Bank Address
							<td> <input type='text' name='data[bank_Address1]' size='30' />
					</tr>	

					<tr>
							<td width="45%" class="main"> Bank Address
							<td> <input type='text' name='data[bank_Address2]' size='30' />
					</tr>	
					</table>		
					<b>Check Specification</b>

					<table width="70%" cellspacing="7">
					<tr>
							<td width="45%" class="main"> Bank Routing Number* 
							<td> <input type='text' name='data[Routing_Number]' size='30' maxlength='9' id='line4' />
					</tr>
					<tr>
							<td width="45%" class="main"> Bank Account Number*
							<td> <input type='text' name='data[Account_Number]' size='30' maxlength='17' id='line5' />
					</tr>	

					<tr>
							<td width="45%" class="main"> Fraction Number*
							<td> <input type='text' name='data[Fraction]' size='30' maxlength='15' id='line6' />
					</tr>	
					<tr>
							<td width="45%" class="main"> Starting Check Number*
							<td> <input type='text' name='data[starting_Check]' size='30' maxlength='6' id='line7' />
					</tr>							

					<tr>
					  <td  width="45%" class="main">Number of Signature lines
						<td class="main" align="center"> <input type='radio' name='id[13]' value='40'  checked /> One    <input type='radio' name='id[13]' value='41' /> Two

						</tr>				
					<tr>
							<td width="45%" class="main"> Text above signature line
							<td> <input type='text' name='above' size='30' />
					</tr>			
					<tr>
					  <td  width="45%" class="main"><br>Reverse order printing
						<td class="main" align="center"> <br><input type='radio' name='id[16]' value='54'  checked  /> No    <input type='radio' name='id[16]' value='55' /> Yes

						</tr>								
					<tr>
					  <td  width="45%" class="main"><br>Add logo
						<td class="main" align="center"><br> <input onclick='upform(0)' type='radio' name='id[17]' value='54' checked /> No    <input onclick='upform(1)' type='radio' name='id[17]' value='55' /> Yes (+$15.00)

						</tr>		
					<tr >

						<td id='upf' style="display:none" colspan="2" class="main" align="center">File Upload:  <input type='file' name='logo' >   <br><br>   <input  type='radio' name='id[17]' value='59' /> Use logo from last order(+$15.00)

						</tr>								

					<tr>
					  <td  width="45%" class="main" valign="top"><br>Emergency Services
						<td class="main" align="center" valign="top"><br><input type='radio' name='id[18]' value='57' /> Next Day(+$25.00) <br><input type='radio' name='id[18]' value='56' /> Same Day(+$75.00)

						</tr>													
					</table>							
<?php

   $products_attributes_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "'");
   $products_attributes = tep_db_fetch_array($products_attributes_query);
   if ($products_attributes['total'] > 0 && 1==0) {
?>
         <table border="0" cellspacing="0" cellpadding="2">
           <tr>
             <td class="main" colspan="2"><?php echo TEXT_PRODUCT_OPTIONS; ?></td>
           </tr>
<?php
     $products_options_name_query = tep_db_query("select distinct popt.products_options_id, popt.products_options_name from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "' order by popt.products_options_name");
     while ($products_options_name = tep_db_fetch_array($products_options_name_query)) {
       $products_options_array = array();
       $products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "'");
       while ($products_options = tep_db_fetch_array($products_options_query)) {
         $products_options_array[] = array('id' => $products_options['products_options_values_id'], 'text' => $products_options['products_options_values_name']);
         if ($products_options['options_values_price'] != '0') {
           $products_options_array[sizeof($products_options_array)-1]['text'] .= ' (' . $products_options['price_prefix'] . $currencies->display_price($products_options['options_values_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) .') ';
         }
       }

       if (isset($cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']])) {
         $selected_attribute = $cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']];
       } else {
         $selected_attribute = false;
       }
?>
           <tr>
             <td class="main"><?php echo $products_options_name['products_options_name'] . ':'; ?></td>
             <td class="main"><?php echo tep_draw_pull_down_menu('id[' . $products_options_name['products_options_id'] . ']', $products_options_array, $selected_attribute); ?></td>
           </tr>
<?php
     }
?>
         </table>
<?php
   }
?>
       </td>
     </tr>
     <tr>
       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
     </tr>
<?php



   if (tep_not_null($product_info['products_url'])) {
?>
     <tr>
       <td class="main"><?php echo sprintf(TEXT_MORE_INFORMATION, tep_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($product_info['products_url']), 'NONSSL', true, false)); ?></td>
     </tr>
     <tr>
       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
     </tr>
<?php
   }


?>
     <tr>
       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
     </tr>
     <tr>
       <td><center>


             <br><br> <?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); ?>


     </tr>
     <tr>
       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
     </tr>
     <tr>
       <td>
<?php

 }
?>
       </td>
     </tr>
   </table></form></td>
<!-- body_text_eof //-->

   </table></td>


<!-- footer //-->
<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
<!-- footer_eof //-->
<br>
</body>
</html>
<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...