96 lines
2.4 KiB
PHP
96 lines
2.4 KiB
PHP
<?php
|
|
|
|
// Define variables for file names
|
|
$pdf_name = "RTG-V1S8-General-Attack-to-BUREAUS-Untrue-or-Inaccurate-or-incomplete-Information.pdf";
|
|
$html_format_name = "RTG-V1S8-General-Attack-to-BUREAUS-Untrue-or-Inaccurate-or-incomplete-Information_FORMAT.html";
|
|
|
|
//collect required POST form's input
|
|
$experian_report = $_POST["experian_report"];
|
|
$first_name = $_POST["first_name"];
|
|
$last_name = $_POST["last_name"];
|
|
$street_no = $_POST["street_no"];
|
|
$street_name = $_POST["street_name"];
|
|
$city = $_POST["city"];
|
|
$state = $_POST["state"];
|
|
$credit_bureau_name_address = nl2br($_POST["credit_bureau_name_address"]);
|
|
|
|
$report1 = nl2br($_POST["report1"]);
|
|
$report2 = nl2br($_POST["report2"]);
|
|
$report3 = nl2br($_POST["report3"]);
|
|
$report4 = nl2br($_POST["report4"]);
|
|
|
|
|
|
|
|
|
|
|
|
//Optional Creditors and Dates
|
|
|
|
|
|
|
|
|
|
|
|
// the unique pdf filename which will be saved on server
|
|
$file_name = mt_rand(0, 1000).time().'_'.$pdf_name;
|
|
|
|
if(isset($experian_report)){
|
|
|
|
//get html content from pre defined format
|
|
$today = date("d M, Y");
|
|
$html = file_get_contents($html_format_name);
|
|
|
|
//__SOCIAL_SECURITY_NUMBER__
|
|
//__BIRTH_DATE__
|
|
//
|
|
|
|
|
|
$varList = array(
|
|
'__EXPERIAN_REPORT__', '__FIRST_NAME__','__LAST_NAME__','__STREET_NO__','__STREET_NAME__',
|
|
'__CITY__','__STATE__','__TODAY__','__credit_bureau_name_address__','__REPORT1__',
|
|
'__REPORT2__','__REPORT3__','__REPORT4__'
|
|
|
|
);
|
|
|
|
|
|
$valueList = array(
|
|
$experian_report, $first_name,$last_name,$street_no,$street_name,
|
|
$city,$state,$today,$credit_bureau_name_address,$report1,
|
|
$report2,$report3,$report4 );
|
|
|
|
|
|
|
|
for($i=1;$i<= 20;$i++){
|
|
if(isset($_POST["creditor".$i]) && !empty($_POST["creditor".$i])){
|
|
$creditor[$i] = $_POST["creditor".$i];
|
|
$varList[] = "__creditor".$i."__";
|
|
$valueList[] = nl2br($creditor[$i]);
|
|
|
|
$start = "__START".$i."__";
|
|
$end = "__END".$i."__";
|
|
|
|
$html = str_replace(array($start,$end),array("",""),$html);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$from = strpos($html, "__START".$i."__");
|
|
$to = strpos($html, "__END".$i."__");
|
|
|
|
$html = str_replace(substr($html,$from,($to-$from)+7+strlen($i)),"",$html);
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
require("../common_file.php");
|
|
|
|
} else {
|
|
$url = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']."gtg-15-CrackerJack-Bureau-M2C-Method-letter-for-FIRST-ROUND-ATTACKS-contesting-FCRA-and-Metro-2-for-COMPLIANCE-Proof.html";
|
|
header("Location:".$url);
|
|
}
|
|
|
|
|
|
|
|
?>
|