Code

Discussion on PHP Form Builder - Advanced HTML forms generator with Drag & Drop

Discussion on PHP Form Builder - Advanced HTML forms generator with Drag & Drop

By
Cart 5,803 sales

migli supports this item

Supported

This author's response time can be up to 1 business day.

1032 comments found.

I have a Fieldset with six checkboxes, Is it possible that at least one checkbox must be checked before someone can send the form?

thanks for you help

my purchasecode: ce1977dc-c718-4bd9-a965-8e0953d4d1d9

Hi Lydia,

Thanks for purchase.

Yes, you’ll find an example here: https://www.phpformbuilder.pro/documentation/class-doc.php#php-validation-examples

If you need anything else you’re welcome,

Gilles

Have error on

Warning: include_once(/www/wwwroot/verdata/phpformbuilder/Form.php): failed to open stream: No such file or directory in /www/wwwroot/verdata/form/templates/bootstrap-4-forms/contact-form-1-popover.php on line 10

Warning: include_once(): Failed opening ’/www/wwwroot/verdata/phpformbuilder/Form.php’ for inclusion (include_path=’.:/www/server/php/72/lib/php’) in /www/wwwroot/verdata/form/templates/bootstrap-4-forms/contact-form-1-popover.php on line 10

Fatal error: Uncaught Error: Class ‘phpformbuilder\Form’ not found in /www/wwwroot/verdata/form/templates/bootstrap-4-forms/contact-form-1-popover.php:48 Stack trace: #0 {main} thrown in /www/wwwroot/verdata/form/templates/bootstrap-4-forms/contact-form-1-popover.php on line 48

http://verdata.alkeslabdcm.com/form/templates/bootstrap-4-forms/contact-form-1-popover.php

Hi,

Please read the doc before posting: https://www.phpformbuilder.pro/documentation/help-center.php#warning-include_once

If you need anything else you’re welcome,

Gilles

Now ..how to maka database ? work and connect with my form

You can make anything you want with the posted values, make your database queries the way you are use to, or use the excellent provided MySQL wrapper class: https://www.phpformbuilder.pro/documentation/class-doc.php#database-main

Здравствуйте! Подскажите пожалуйста – для какого количества доменов я могу создавать формы с помощью вашего модуля PHP Form Builder?

Hello,

Please write in English, you can easily use a translator, thanks.

is it possible to make a form in which the user can take a photo, and it will be automatically attached?

Hi,

If you find a Javascript plugin for this you can easily implement this. The current file uploader plugin is a great premium plugin, but the user must grab the images/files from its support.

I tried it online but i did not understand what is the Form.php and what should be included in it.

Hi,

I do not understand what the question is, please explain

Hello, I changed my domain name and now cannot use the plugin.
When I visit register.php, it says “Your PHP Form Builder copy is already registered on this domain.”

However, when I try to submit the form, it says “License is not installed yet or corrupted”

I confirmed permissions 777 for the license file. Please advise, thank you.

Hello,

please contact me, send me your purchase code & delete phpformbuilder/[your-domain]/license.php from your server. I’ll remove your installation license from the server then you’ll be able to reinstall elsewhere.

https://www.phpformbuilder.pro/documentation/help-center.php#reinstall-phpfb

Gilles

Hi Migli, this is Carlos I bought your forms a while ago, and you also did some freelance work for me afew years ago.

I just wanted to ask you which file is the file to make a change for the calendar, I check the DatePicker files but they don’t seem to work, I need to make the calendar smaller on iphone screen the calendar is too long in width.

Thanks in advance.

It is fix now, I had to force it on mobile, with this code:

.picker__frame { width: 270px; }

.picker__box { width: 270px; }

.picker__holder { width: 310px!important; }

By the way Giles, are you still doing freelance work?

My boss is willing to hired you again if you can help us fix a bug in our website, it has something to do with the pinch-zoom on iphone (on android works fine), it will refresh when you pinch-zoom and then when you pinch-zoom again a second time it will give us an error on a black screen saying: A problem repeatedly occurred on…...”

This problem started happening when we re-design our website using half Webflow code and half my own code, before when I used only my code (coding from scratch) I never had this problem, so I think it has something to do with Webflow code or Webflow plugins, maybe using too much memory that’s why it crash.

Anyways let me know if you are interest it with this work, I will appreciated your help.

Hi Carlos,

I’m sorry I can’t accept any job, I’m already working more than full time

Hi Team

I want to add file uploader in the components list on the drag & drop example. Can you please guide me on this? how can I do this?

Thanks

Hi,

Here’s the answer from Codecanyon:

As long as you have not promised this in any item description of comment then you have the right not to provide these.

If you need anything else you’re welcome,

Gilles

Hello Team,

Can you please provide us Uncompiled files for drag and drop bundle.js, if you want to charge for those files. Please tell me your price. We can discuss.

Thanks

Hello,

I’m sorry but it’s not a question of price, even for a high price I’ll never accept this.

These sources files would make anyone able to publish a drag & drop form builder like if they’d be the author, that’s the reason.

I work hards on this and cannot take any risk.

for information, I also worked on this DMCA Sender tool: https://www.phpformbuilder.pro/documentation/class-doc.php

I’m sending DMCA complaints each week, many piracy websites have been closed due to my requests,

I also had a lot of work to try to protect my work efficiently with the licensing system.

I’d wish we live in a world where everyone would respect the work of others people, but unfortunately it’s not the case …

Gilles

Hi Team

I want to add file uploader in components list on drag & drop example. Can you please guide me on this. how can i do this?

Thanks

Hello I just bought your product and it’s too complicated I tried going through the documentation . I want to use form drag and drop and integrate code on my website. Can you please assist

You can ask for refund here. It’ll be accepted only if your request matches the refund policy.

And please next time think before purchasing, authors loose money on refunds.

And at last please don’t promote others items on your comments.

Thanks.

Okay I’m really sorry. Thank you. I have sent a refund request. It won’t happen again

Can you please accept it

Is there a reason it would not redirect to a page after the submit button is hit?

I can’t get it to update my sql data through the form.

All my credentials are right.

I guess I’m confused on localhost credentials vs remote server credentials.

I’m updating a sql database on the ibm cloud. My form is on bluehost hosted website.

Hi,

localhost is detected in phpformbuilder/database/db-connect.php:

if ($_SERVER['REMOTE_ADDR'] == '127.0.0.1' || $_SERVER['REMOTE_ADDR'] == '::1') {
    // local server
}

bluehost is not a local server.

If your sql queries fail it comes from your db settings or authorizations.

When you post a form it’s a good practice to validate and do stuff on the same page. That allows to show form errors if there’s any without going back to the form page. Then you clear the values and redirect elsewhere if you want.

If for some reason you want to post to another page, use the setAction() function: https://www.phpformbuilder.pro/documentation/class-doc.php#setAction If you need anything else you’re welcome,

Gilles

I can’t get it to work. Have spent more than 24 hours trying to make it happen, but always gives me the same error.

Fatal error: Uncaught Error: Call to a member function insertRow() on array in /home/p0q8dfercq9l/public_html/registro.php:71 Stack trace: #0 {main} thrown in /home/p0q8dfercq9l/public_html/registro.php on line 71

in reference to this line… }

if (!$db->insertRow('DogRegistry', $insert)) {
        $msg = '' . $db->error() . '' . $db->getLastSql() . '' . " \n";
    } else {
        $msg = '1 row inserted !' . " \n";
    }
    // clear the form
    Form::clear('registro');
}

Hi,

Thanks for purchase, and sorry you spent so much time without get things working.

First, check that your database connection is ok in phpformbuilder/database/db-connect.php

Before the code you pasted here, you must instanciate the db object:
$db = new Mysql();
if (!$db->insertRow('DogRegistry', $insert)) {
// ...
}

If this doesn’t help, please email me your access and I’ll make it work for you.

Gilles

Can I create users accounts?

Hi,

There’s no admin dashboard with PHP Form Builder, just forms, and you can do anything you want with the posted data in PHP.

Maybe PHP CRUD Generator could interest you.

Hello, I would like to use 2 non-Ajax forms on a single page. At the top I will be using the Modal Contact Form, and at the bottom of the page the standard Contact Form. How can I make this work? I didn’t see any documentation in the help center on how to set this up :)

Hi,

Yes, there’s nothing special, you can put several forms on the same page. Here’s an example with modals, but you can have 1 modal & the other not, it’s the same logic: https://www.phpformbuilder.pro/templates/bootstrap-4-forms/multiple-modals.php

If you need anything else you’re welcome,

Gilles

Bonjour Gilles, Est il possible d’afficher le message de “bon envoi” client dans le bas du formulaire plutôt qu’au dessus. Dans mon cas, celui-ci n’est pas visible et, en tous cas, lors du rafraichissement de la page le curseur reste sous le formulaire. D’avance merci.

Bonjour,

Oui, il suffit de placer $sent_message à l’endroit où tu veux l’afficher:

if (isset($sent_message)) {
    echo $sent_message;
}

Hello Gilles. Rien à faire. Pourrais tu m’indiquer la forme complète. Pour le moment, le “if (isset($sent_message…” se trouve dans le body. Si j’essaie de l’intercaler dans le “form” le système plante et dans le “head” rien ne change. D’avance merci. Dirk.

Dans :

<?php if (isset($sent_message)) {
    echo $sent_message;
} ?>

Pour plus d’aide j’aurais besoin que tu m’envoies ton access FTP & l’URL du fiormulaire

just bought , drag drop builder does not work https://im2.ezgif.com/tmp/ezgif-2-ff9cf216d7be.gif

Hi,

Thanks for purchase.

You have to drop the items on the top of the blank space, please try it. If you still have the same problem, look at the browser console to see if it throws any error. If you want quick solving the best way would be to send me your url & ftp access.

Gilles

Hi,
question before purchasing !
Not being very experienced with databases
I was wondering if PHP Form Builder also creates databases or do I necessarily have to create it myself.

Thanks for the reply :grin:

Hi,

Unlike some other tools you’ll find on the market PHP Form Builder doesn’t create hour database. This is intentional, you can save any data according to your needs, but you have to know how to create your database, then use the MySQL wrapper class to insert your data: https://www.phpformbuilder.pro/documentation/class-doc.php#database-insert

I adsvice you to use MySQL Workbench, it’s a very good soft for this: https://www.phpcrudgenerator.com/tutorials/how-to-build-up-your-database-with-mysql-workbench

If you need anything else you’re welcome,

Gilles

Bonsoir Gilles,
merci beaucoup pour ta réponse complète et rapide!
PHP Form Builder semble en effet un très bon produit
et pour moi ce serait très utile de pouvoir créer toutes ces formulairs très rapidement.
Je me demande: pourrai-je utiliser ton produit pour différents projects web
ou devrai-je acheter une licence pour chaque project Web ?
Merci :grin:

Bonjour Hegel,

Une licence permet 2 installations: 1 en local + 1 en production. 1 installation = 1 domaine + sous-domaines illimités.

Il faut donc acheter une licence pour chaque projet (ce qui est commun à tous les items vendus sur Codecanyon).

Si tu en achètes plusieurs je propose des réductions, même si tu les achètes petit à petit: https://codecanyon.net/item/php-form-builder/8790160#item-description__up-to-50-off-with-the-extended-license

If you need anything else you’re welcome,

Gilles

Do you have any database for saving replies ?

Please start with “hello” or something.

There’s no built-in database. You’ve got to create your structure then save what you want.

Gilles

hello

Hi.

I have send email, please check it.

and one more bug (similar) https://prnt.sc/vtl7kr or https://prnt.sc/vtlbhz

I can not use drag-and-drop because I will get an error that stop the form, and only one way to reload the page.

I use default version of PHP Form Builder. Please, fix the bugs.

Hi,

I got your email, will see how to make this work then answer you.

Hi, I got this script a few years ago and my purchase code dont seem to work anymore. Here is a copy of it without the complete code. ” Licensor’s Author Username: migli Licensee: Viperay Systems Item Title: PHP Form Builder Item URL: https://codecanyon.net/item/php-form-builder/8790160 Item ID: 8790160 Item Purchase Code: 209850bf-** Purchase Date: 2015-05-20 17:54:03 UTC License Certificate This document certifies the purchase of the following license: REGULAR LICENSE. Details of the license can be accessed from your downloads page. For any queries related to this document or license please contact Envato Support via https://help.market.envato.com Envato Pty Ltd (ABN 11 119 159 741) PO Box 16122, Collins Street West, VIC 8007, Australia THIS IS NOT A TAX RECEIPT OR INVOICE

What do I do now??

Never mind,, I must have had a space in it. Thanks anyway my friend

Hi Viperay,

fortunately it still work & will always.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey