Projects tagged ‘form’ and ‘forms’


Jump to tag:

Projects tagged ‘form’ and ‘forms’

Filtered by Project Tags form forms

Refine results Project Tags php (10) javascript (7) web (5) framework (4) ajax (4) html (4) xml (4) dynamic_content (2) opensource (2) ui (2) free (2) php5 (2)

[19 total ]

5 Users
 

Formidable is an open source application framework based on the TYPO3 CMS. It features smart template engine, many form widgets, ajax and events handling, XHTML valid code and accessibility thanks ... [More] to the unobtrusive-js technique. It is usable as pure TypoScript cObj, inside front end plugins or even in the TYPO3 backend. [Less]
Created about 1 year ago.

2 Users

JavaScript controls for PrototypeJS
Created about 1 year ago.

1 Users

Internet Discussion Boards is a message board system by Game Maker 2k. Its very easy to set up. Your web host needs PHP and MySQL. Internet Discussion Boards is Open Source so you can make changes ... [More] to it under the terms of the Revised BSD License. [Less]
Created about 1 year ago.

1 Users

Lightweight framework for heavy lifting With Evolutility, you can build database CRUD web applications for ASP.net and SQL Server simply by describing their metadata (UI and DB mapping)... without ... [More] any hand coding necessary. http://www.evolutility.org [Less]
Created 9 months ago.

0 Users

This project intends to create a PHP library that can be used to create HTML forms using the PHP programming language.
Created 8 months ago.

0 Users

Based on the ideas behind Drupal's form API, the php formapi is a standalone, easy to use form api that saves lots of coding. It's not finished, but you can download the working sourcecode. It's ... [More] lightweight (just 1 file). It should save you lotsa work. It's easy to use (no need to be a hardcore coder). Design GoalsBe standalone and not too heavy, so the library can easily be incorporated into other projects. Things like themeing and such are probably too platform-specific to implement. Be focused: do forms well, but don't do other stuff. Be SUPER easy to use, for beginning programmers too. Not more code than necessary. FeaturesNo dependencies, a simple standalone library. Forms can be created programatically Validation is taken care of automatically. Printing a form is done for you. Receiving a submitted form is done for you. StatusFirst release as a proof of concept. It basically works, but needs lotsa cleanup. RoadMap under construction UsageTo define a form, write it in simple yaml: $formapi_define_mytestform = " title: My test form fieldset: label: it's a fieldset textfield: label: it's a textfield! required: TRUE fieldsetclose: checkbox: label: my checkboxing dropdown: label: my first dropdown values: First item: a Second item: b Third item: c --- this is an inline comment that won't show up in the form. radiogroup: id: radiogroup1 title: Make a choice: values: The first one: a The second one: b selected: TRUE The final one: c submitbutton: label: Send this form along! ";Next, define a function that'll be called when the form is submitted: function formapi_submit_mytestform($values) // the part after formapi_submit_ is the form id. { print "My form was submitted!These are the values we got: "; print_r($values); return FALSE; // return a path if you want to redirect the user. }You're done! Now, to show the form, just call: formapi_print("mytestform");To create a page that receives all forms, create a php page and add this: include_once("formapi.php"); // include form api include_once("myforms.php"); // include all form definitions formapi_receiveform();All forms will be submitted to this page. It will know what to do because each form has an id. That's it. No more coding needed. [Less]
Created 11 months ago.

0 Users

Add any google form to your igoogle
Created 11 months ago.

0 Users

WindowLib is a C++ library used to simplify the process to create native C++ GUI's. It works similar to Windows MFC but it uses an subscription based event system similar to how forms work in C#.
Created 10 months ago.

0 Users

A set of phptal macros for easy generating forms
Created 3 months ago.

0 Users

User- and programmer-friendly PHP & JavaScript based web 2.0 class providing automatic form creating and checking.
Created 11 months ago.