.fcs-review-table {
background: #ffffff;
margin-bottom: 30px;
}
.table-bordered td, .table-bordered th {
text-transform: uppercase;
border: 0;
font-size: 14px;
border-bottom: 1px solid #dee2e6;
vertical-align: middle;
}
.fcs-review-table tbody tr td:first-child {
background: #f8f8f8;
font-weight: 700;
}
.table-bordered thead td, .table-bordered thead th {
border-bottom-width: 0;
}
MSME Registration Preview
';
}
// Instant MSME Registration
if(
(isset($_POST['form_id'])&& $_POST['form_id'] == 'instant_msme_registration') &&
(isset($_POST['applicant_name'])&& $_POST['applicant_name'] !='') &&
(isset($_POST['mobile_number'])&& $_POST['mobile_number'] !='') &&
(isset($_POST['email_id'])&& $_POST['email_id'] !='') &&
(isset($_POST['business_address'])&& $_POST['business_address'] !='') &&
(isset($_POST['office_address'])&& $_POST['office_address'] !='') &&
(isset($_POST['gender'])&& $_POST['gender'] !='') &&
(isset($_POST['social_category'])&& $_POST['social_category'] !='') &&
(isset($_POST['physically_handicapped'])&& $_POST['physically_handicapped'] !='') &&
(isset($_POST['aadhaar_number'])&& $_POST['aadhaar_number'] !='') &&
(isset($_POST['pan_card_number'])&& $_POST['pan_card_number'] !='') &&
(isset($_POST['bank_account_number'])&& $_POST['bank_account_number'] !='') &&
(isset($_POST['ifsc_code'])&& $_POST['ifsc_code'] !='') &&
(isset($_POST['business_name'])&& $_POST['business_name'] !='') &&
(isset($_POST['date_of_commencement_of_business'])&& $_POST['date_of_commencement_of_business'] !='') &&
(isset($_POST['type_of_organisation'])&& $_POST['type_of_organisation'] !='') &&
(isset($_POST['main_business_activity_of_enterprise'])&& $_POST['main_business_activity_of_enterprise'] !='') &&
(isset($_POST['additional_details_about_business'])&& $_POST['additional_details_about_business'] !='') &&
(isset($_POST['number_of_employees'])&& $_POST['number_of_employees'] !='') &&
(isset($_POST['investment_in_plant_and_machinery'])&& $_POST['investment_in_plant_and_machinery'] !='') &&
(isset($_POST['terms_of_service'])&& $_POST['terms_of_service'] !='')
)
{
$upload_aadhaar_card_front = urlencode($_FILES["upload_aadhaar_card_front"]["name"]);
$_SESSION['upload_aadhaar_card_front'] = rand().'_'.$upload_aadhaar_card_front;
$upload_aadhaar_card_front_tmp = $_FILES["upload_aadhaar_card_front"]["tmp_name"];
move_uploaded_file($upload_aadhaar_card_front_tmp, "uploads/msme/".$_SESSION['upload_aadhaar_card_front']."");
$upload_aadhaar_card_back = urlencode($_FILES["upload_aadhaar_card_back"]["name"]);
$_SESSION['upload_aadhaar_card_back'] = rand().'_'.$upload_aadhaar_card_back;
$upload_aadhaar_card_back_tmp = $_FILES["upload_aadhaar_card_back"]["tmp_name"];
move_uploaded_file($upload_aadhaar_card_back_tmp, "uploads/msme/".$_SESSION['upload_aadhaar_card_back']."");
$upload_pan_card_front = urlencode($_FILES["upload_pan_card_front"]["name"]);
$_SESSION['upload_pan_card_front'] = rand().'_'.$upload_pan_card_front;
$upload_pan_card_front_tmp = $_FILES["upload_pan_card_front"]["tmp_name"];
move_uploaded_file($upload_pan_card_front_tmp, "uploads/msme/".$_SESSION['upload_pan_card_front']."");
echo '
Instant MSME Registration Preview
';
}
// Update Certificate
if(
(isset($_POST['form_id'])&& $_POST['form_id'] == 'update_certificate') &&
(isset($_POST['applicant_name'])&& $_POST['applicant_name'] !='') &&
(isset($_POST['email_id'])&& $_POST['email_id'] !='') &&
(isset($_POST['mobile_number'])&& $_POST['mobile_number'] !='') &&
(isset($_POST['business_address'])&& $_POST['business_address'] !='') &&
(isset($_POST['terms_of_service'])&& $_POST['terms_of_service'] !='')
)
{
echo '
Update Certificate Preview
';
}
// Print Certificate
if(
(isset($_POST['form_id'])&& $_POST['form_id'] == 'print_certificate') &&
(isset($_POST['applicant_name'])&& $_POST['applicant_name'] !='') &&
(isset($_POST['email_id'])&& $_POST['email_id'] !='') &&
(isset($_POST['mobile_number'])&& $_POST['mobile_number'] !='') &&
(isset($_POST['business_address'])&& $_POST['business_address'] !='') &&
(isset($_POST['terms_of_service'])&& $_POST['terms_of_service'] !='')
)
{
echo '
Print Certificate Preview
';
}
// Trace Certificate
if(
(isset($_POST['form_id'])&& $_POST['form_id'] == 'trace_certificate') &&
(isset($_POST['applicant_name'])&& $_POST['applicant_name'] !='') &&
(isset($_POST['email_id'])&& $_POST['email_id'] !='') &&
(isset($_POST['mobile_number'])&& $_POST['mobile_number'] !='') &&
(isset($_POST['business_address'])&& $_POST['business_address'] !='') &&
(isset($_POST['terms_of_service'])&& $_POST['terms_of_service'] !='')
)
{
echo '
Trace Certificate Preview
';
}
// Databank Registration
if(
(isset($_POST['form_id'])&& $_POST['form_id'] == 'databank_registration') &&
(isset($_POST['applicant_name'])&& $_POST['applicant_name'] !='') &&
(isset($_POST['email_id'])&& $_POST['email_id'] !='') &&
(isset($_POST['mobile_number'])&& $_POST['mobile_number'] !='') &&
(isset($_POST['business_address'])&& $_POST['business_address'] !='') &&
(isset($_POST['terms_of_service'])&& $_POST['terms_of_service'] !='')
)
{
echo '
Databank Registration Preview
';
}
?>