PHP code example of mashfiqdev / form_maker
1. Go to this page and download the library: Download mashfiqdev/form_maker library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mashfiqdev / form_maker example snippets
\MashfiqDev\FormMaker\FormMakerServiceProvider::class,
$emaildata = [
"ids" => ["email"],
"classes" => ["form-control", "bg-light","my-2"],
"type" => "email",
"name" => "email",
"values" => [
"prev_value" => "[email protected] "
],
"
$countrydata = [
"ids" => ["country"],
"classes" => ["form-select", "bg-light","my-2"],
"name" => "country",
"values" => [
"BD" => "Bangladesh",
"AUS" => "Australia",
"DU" => "Germany",
"CN" => "Canada",
],
"active" => "DU",
"
$degreedata = [
"ids" => ["degree"],
"classes" => ["py-2", "bg-light","my-2","blockquote"],
"name" => "degree",
"values" => [
"psc" => "P.S.C",
"jsc" => "J.S.C",
"ssc" => "S.S.C",
"hsc" => "H.S.C",
"bsc" => "B.S.C",
"msc" => "M.S.C",
],
"
$maritaldata = [
"ids" => ["marital"],
"classes" => ["form-check","form-check-inline", "bg-light","my-2","blockquote"],
"name" => "marital",
"values" => [
"single" => "Single",
"married" => "Married",
"unmarried" => "Unmarried"
],
"active" => "unmarried",
"
HTML
<div class="form-group">
<label for="country">Degree</label>
@
HTML
<div class="form-group">
<label for="country">Marital Status</label><br>
@