Link to home
Start Free TrialLog in
Avatar of glozinski
glozinskiFlag for Canada

asked on

Nedd customer to check box before proceeding

Need to ensure that the IAgree button is checked before customer can proceed to the next step.
Thank you
<div class="name">
		<h4>Order Comments:</h4>
    <div class="details-text">
   	  <p class="eC_OrderInfo"><td><textarea name="OrderComments" id="OrderComments" cols="80" rows="6"><?php echo((isset($_POST["OrderComments"]))?$_POST["OrderComments"]:"") ?></textarea></td></p>
      <p class="eC_OrderInfo"><br />
      <?php
	  if (isset($_GET['terms']))  {
		  ?>
        	  <span style="color:red">You must accept the terms to continue.</span>
              <?php
	  }
	  ?><br />
        	  <input <?php if (!(strcmp(((isset($_POST["IAccept"]))?$_POST["IAccept"]:""),1))) {echo "checked=\"checked\"";} ?> name="IAccept" type="checkbox" id="IAccept" value="yes" />
       	    By Checking this box you give your digital signature that 
You agree with the <a href="/~ps4/page.php?Footer Pages=3">Terms of Sale </a></p>
      <p class="eC_OrderInfo">We do not sell, trade, or rent your personal information to others.</p>
      <p class="eC_OrderInfo"> <a href="/~ps4/page.php?Footer Pages=4">Our Online Privacy Policy</a> continues our   commitment to       serve   you and to protect your privacy online.</p>
      <p style="color:red"> Please refer to <a href="/~ps4/page.php?Footer_Pages_2=4">Shipping Rates </a>for approximate freight costs. </p>
      <p class="eC_OrderInfo"><span style="color:red">Please note: We ensure the best possible shipping rates for all of our customers. </span></p>
    </div>
        <div class="separator">&nbsp;</div>
      </div>

Open in new window

SOLUTION
Avatar of speak2ab
speak2ab
Flag of France image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of glozinski

ASKER

jason1178 was the one easiest for me to implement
thank you all for assisting....