Login / Status
developer.Resource
Home . Documentation . Document Library . Extension Manuals
Sponsors
hosted by punkt.deTYPO3 and Open Source Magazine

1.7. FAQ

Is there a Captcha-field in the mail form?

Sure, it is .. to enable the captcha you must install and load the extension called “captcha”

the actual version (08-02-23) is 1.1.0 which you can find under: http://typo3.org/extensions/repository/view/captcha/1.1.0/

But don't worry if you cant or don't want to install this extension, there is a little “protection” if you don't activate this extension. A visitor must do a little bit math to make the form valid. More information find you in the template (its marked as a comment in the template)

I need help!!!

Do you? Then check www.Creationx.de for more information and use the forum.

You can also use the forum under www.typo3.net

How can i add more fields in the FE-Form

This is very easy! You can add as much fields you want. You are must only give the new field a special “name”

Example:

You want a field where somebody can enter his age!

The HTML-Code:

<input type=”text” name=”age” />

To make this now works with the extension you must only change the name like:

<input type=”text” name=”tx_mhbranchenbuch_postVar[age] ” />

Thats all!