Download the PHP package axis80/quickform without Composer

On this page you can find all versions of the php package axis80/quickform. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package quickform

Quickform for PHP

For small web sites built in HTML, a contact form is often the only thing on the site that requires use of a server-side language such as PHP. Adding a framework such as Laravel is overkill, but without one the developer is often left with no choice but to write a standalone script to handle form submissions. This is not a terribly difficult thing to do in PHP, but it's hella tedious, as is the process of writing the markup to output the form itself.

Quickform is designed to minimize the time and effort it takes to get a new contact form up and running on a simple HTML site hosted on a PHP server. Form attributes and fields are defined in a config array, and submissions are sent via email using PHPMailer.

Quickform does not currently perform validation of the values passed to it in the form fields. It merely checks whether required fields have been filled out. This is sufficient for most small web sites.

Requirements

Usage

Install the package using composer, by typing: composer require axis80/quickform

This will in turn install PHPMailer as a dependency.

Create an HTML page for your contact form. It must be saved with a .php extension, or you must enable PHP parsing for .html files.

At the top of the file, you have to include the /vendor/autoload.php file that was created by Composer. You also need to define your form, instantiate the class, and call the handler that processes form POST submissions. Here's everything that goes at the top of your file:

Further on down your page, add the following code wherever you want your form to appear:

QuickForm renders the entire form for you, including a submit button at the bottom.

A complete HTML contact page can be found in tests/SimpleContactForm.php, You can use this as a starting point for building your own contact form.

That's pretty much it. If your SMTP settings are correct, you should receive a notification email at the address(es) you specified every time the form is submitted.

Dynamically setting the reply-to header in the notification email

When an end user submits the form, a notification email is sent using the "to" and "from" email addresses specified in your QuickForm configuration. Normally, if the recipient of that email chooses to reply, the reply email address will be routed to the sender of the notification email. This is not always desirable, as web site administrators and customer service staff will often blindly hit "reply" and send responses back to the wrong address. It is possible to override this behavior by setting the replytoField config parameter to the name of a form field. This will cause the reply-to header to be populated using the value entered into that field by the end user, so any replies will be routed to the person who submitted the form.

Honeypot fields

Any field can optionally be marked as a "honeypot" by setting isHoneypot to true. In addition to setting that flag, you should also assign it a CSS class that hides it from view. Bots will often fill out the field, but a valid user cannot, so if a value is received in that field the submission will be treated as spam and discarded. In the example configuration above, the "phone" field is set as a honeypot, and the "d-none" class is used to hide it.

ReCAPTCHA v2

To enable ReCAPTCHA v2 ("I'm not a robot" checkbox) on the forms, retrieve a keypair from https://www.google.com/recaptcha/admin and enter them into your configuration. You must also add this code snippet to the <head> section of your page:

<script src="https://www.google.com/recaptcha/api.js" async defer></script>

Support

I'll do my best to keep up with issue reports that relate to bugs and/or enhancements, as well as with any pull requests that come in. For anything else you should probably have low expectations of receiving a response. I simply do not have the time to answer questions about basic PHP scripting, working with different web hosts, etc. Sorry :-(

Contributions

Pull requests are welcome, particularly those which improve the documentation and examples.


All versions of quickform with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0.0
phpmailer/phpmailer Version ^6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package axis80/quickform contains the following files

Loading the files please wait ....