How to create checkbox style like this

5 replies
I want to know how to create checkbox style like this example :
Belinda Benn's Get Lean Program :: Belinda Benn - Your Australian Transformation Coach

If they keep the box checked, they will go to the default payment page

I they UN-check the box, and then click the order button, they will be taken to second payment page.
#checkbox #create #html #order #style
  • Profile picture of the author christogonus
    If the second webpage is in php file format then this could help.

    Let the Form Action be to go to the second page and the Method be POST

    Then on the top of the second page, you use the PHP IF ISSET

    <?php
    if ( isset ($_POST['CheckBoxName'])){
    header ('location: LinkToCheckOut');
    }
    else
    {
    ?>

    the second page codes goes here

    <?php } ?>
    Signature
    I am a developer and can support on WHMCS, Cpanel, VPS, SSL and more. Add Me On Skype: christogonus2

    >> I offer WHMCS Setup, Updates & Technical Support <<
    {{ DiscussionBoard.errors[8966709].message }}
  • Profile picture of the author christogonus
    You are welcomed Marioxiao
    Signature
    I am a developer and can support on WHMCS, Cpanel, VPS, SSL and more. Add Me On Skype: christogonus2

    >> I offer WHMCS Setup, Updates & Technical Support <<
    {{ DiscussionBoard.errors[8984373].message }}
  • Profile picture of the author VeraHaas
    when I view the site in the browser (IE6) and I click on the radio button, IE displays 'Error on Page' with the caution sign in the bottom-left corner. When I click it for more details it states "Could not get the type property. This command is not supported. This error is in relation to the line;
    {{ DiscussionBoard.errors[8985814].message }}
    • Profile picture of the author Mathiasv91
      Originally Posted by VeraHaas View Post

      when I view the site in the browser (IE6) and I click on the radio button, IE displays 'Error on Page' with the caution sign in the bottom-left corner. When I click it for more details it states "Could not get the type property. This command is not supported. This error is in relation to the line;
      IE 6??... you should think about updating.
      {{ DiscussionBoard.errors[8986089].message }}

Trending Topics