| Lee Lundy Experian | Experian NCAC | Experian NCAC | Experian NCAC | Ann Sterling ( or ACTING VP/AGC) |
| 701 Experian Parkway | PO Box 9701 | PO Box 2002 | PO Box 4500 | 475 Anton Blvd |
| Allen, TX 75013 | Allen, TX. 75013 | Allen ,TX 75013 | Allen, TX 75013 | Costa Mesa, CA 92626 |
';
} else if($report_file_name == "2"){
$report_name_prefix = "Equifax Confirmation";
$address = '
| Katherine Dunn | Equifax Information Services | Equifax Information Services |
| Assistant General Counsel | PO BOX 740241 | PO BOX 740256 |
| Equifax LLC | Atlanta, GA 30374 | Atlanta, GA 30374 |
| 1550 Peachtree St | | |
| NE Atlanta, GA 30309 | | |
';
} else if($report_file_name == "3"){
$report_name_prefix = "TransUnion File";
$address = '
| Gary S. Friedlander | TransUnion | TransUnion |
Vice President & Division General Counsel for TransUnion LLC, | PO Box 1000 | PO Box 2000 |
| Office of the General Counsel | Chester, PA | Chester, PA |
| Transunion Corp. | 19022-1000 | 19016-2000 |
| 555 W. Adams Street | | |
| Chicago IL 60661 | | |
';
} else if($report_file_name == "4"){
$report_name_prefix = "INNOVIS File";
$address = '
| Innovis | Innovis |
| Attn: Consumer Assistance | Corporate Headquaters |
| Pittsburgh, PA 15230-1689 | 250 E. Town St. |
| (800) 540-2505 | Columbus, ohio 43215 |
';
} else if($report_file_name == "5"){
$report_name_prefix = "LEXISNEXIS File";
$address = '
| LexisNexis Consumer Center | C.L.U.E Inc. Consumer Section |
| P.O. Box 105108 | P.O. Box 105295 |
| Atlanta, GA, 30348, | Atlanta, GA 30348-5295 |
| 888-497-0011 | 1-866-312-8076 |
';
}
// 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);
$personal_tracking_number = getPersonalTrackingNumber();
$randVal1 = "substantiate/authenticate/corroborate/establish/justify/establish/attest/validate /confirm/certify/prove/document/affirmly certificate";
$randValArry1 = explode("/",$randVal1);
$random_value1 = $randValArry1[rand(0,count($randValArry1)-1)];
$randVal2 = "verification/confirmation/corroboration/proof/substantiation/authentication/certification/affidavit/attestation/averment/deposition/testament/testimony/evidentiary record";
$randValArry2 = explode("/",$randVal2);
$random_value2 = $randValArry2[rand(0,count($randValArry2)-1)];
$randVal3 = "initial/original/authentic first/genuine first-composed";
$randValArry3 = explode("/",$randVal3);
$random_value3 = $randValArry3[rand(0,count($randValArry3)-1)];
$randVal4 = "literally anybody/literally any person/literally one or more even persons/literally someone/literally somebody/literally everyone/literally everybody/literally any soul/literally any entity/literally any individual";
$randValArry4 = explode("/",$randVal4);
$random_value4 = $randValArry4[rand(0,count($randValArry4)-1)];
$varList = array(
'__EXPERIAN_REPORT__', '__FIRST_NAME__','__LAST_NAME__','__STREET_NO__','__STREET_NAME__',
'__CITY__','__STATE__','__TODAY__', '__SOCIAL_SECURITY_NUMBER__' ,'__ADDRESS__' ,'__REPORT_NAME_PREFIX__',
'__INPUT_VALUE__','__RANDOM_VAL1__','__RANDOM_VAL2__','__RANDOM_VAL3__','__RANDOM_VAL4__'
);
$valueList = array(
$experian_report, $first_name,$last_name,$street_no,$street_name,
$city,$state,$today,$personal_tracking_number,$address,$report_name_prefix,$input_value,
$random_value1,$random_value2,$random_value3,$random_value4
);
$deletionArray = array();
/* $serialLineHTML = "";
$fileNameArray = array(
"Copy of SS Card",
"Copy of State Photo ID",
"Copy of PROOF of my CURRENT and ONLY REQUISITE REPORTED ADDRESS"
); */
for($i=1;$i<= 4;$i++){
if(isset($_FILES["image".$i]["name"]) && !empty($_FILES["image".$i]["name"])){
$imagefilename[$i] = mt_rand(0, 1000).time().'_'.$_FILES["image".$i]["name"];
upload_media($imagefilename[$i],$_POST['image'.$i]);
$deletionArray[] = $imagefilename[$i];
$varList[] = "__image".$i."__";
$valueList[] = $imagefilename[$i];
$start = "__START".$i."__";
$end = "__END".$i."__";
$html = str_replace(array($start,$end),array("",""),$html);
// $serialLineHTML = $serialLineHTML.$fileNameArray[$i-1]."
";
} else {
$from = strpos($html, "__START".$i."__");
$to = strpos($html, "__END".$i."__");
$html = str_replace(substr($html,$from,($to-$from)+7+strlen($i)),"",$html);
}
}
/* if(!empty($serialLineHTML)){
$serialLineHTML = "See Enclosed:
".$serialLineHTML;
}
$html = str_replace('__SERIAL_LINES__',$serialLineHTML,$html); */
require("../common_file.php");
} else {
$url = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']."STAFF-M2CA-Method-SUPER-609-wave-1-BUREAUS.html";
header("Location:".$url);
}
?>