KoolForm - PHP Form decoration and validation
KoolForm is a great form manager which can help you to unload tasks when deal with form. First, it helps you to style/skin your form so that your form appears consistent in all browsers. KoolForm also provides advanced controls such as textbox, button, dropdown, validator so that you can save huge amount of time for your important matters. KoolForm can be integrated seamlessly into your page without any changes to your existing page's layout.
Key Features :
  • Beatiful skin
  • Same appearance in all browser
  • Contain form validator
  • Contain special input boxes
  • Contain styling button
  • Semantic Rendering for Minimal HTML
  • Rich Client-side API
  • Easily customized appearance
  • Step by step guides

    <?php
    	//Step 1: Register KoolForm component to your page
    	require "KoolControls/KoolForm/koolform.php";
     
    	//Step 2: Create KoolForm object.
    	$myform_manager = new KoolForm("myform");
    	$myform_manager->scriptFolder = "KoolControls/KoolForm";//Set scriptFolder
     
    	//Step 3: Set properties for KoolForm
    	$myform_manager->styleFolder="default";
     
    	//Step 4: Init kooform before render
    	$myform_manager->Init();	
        ...
    ?>
    <html>
        <head></head>
        <body>
            <form id="myform" method="post">
                <!-- The area that is marked with "decoration" will be decorated-->	
                <div class="decoration">
                    <input id="txtName" name="txtName" />
    				<input type="checkbox" name="checkReceived" />
                </div>		
     
                <!-- Step 5: Render KoolForm -->		
                <?php echo $myform_manager->Render();?>
            </form>
        </body>
    </html>