60 lines
3.8 KiB
PHP
60 lines
3.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
function getImageHeaingConetnt($first_name, $last_name,$street_no, $street_name, $city, $state, $dob, $ssn){
|
|
|
|
$image_heading_content = '<span style="font-weight: bold;text-decoration: underline;font-size: 13;">
|
|
Please note the enclosed document evidence of my current '.$first_name.' '.$last_name.',<br/>
|
|
'.$street_no.' and '.$street_name.', residence-mailing address '.$city.' and '.$state.' ,'.$dob.', and '.$ssn.'.<br/>
|
|
</span>';
|
|
|
|
return $image_heading_content;
|
|
}
|
|
|
|
|
|
function getExperianAddress() {
|
|
$html = '<table style="width:100%;">
|
|
<tr><td><span style="background-color: yellow;">Experian</span></td><td><span style="background-color: yellow;">Experian</span></td><td><span style="background-color: yellow;">Experian</span></td><td><span style="background-color: yellow;">Experian</span></td><td><span style="background-color: yellow;">Experian</span></td></tr>
|
|
<tr><td><span style="background-color: yellow;">P.O. Box 1200</span></td><td><span style="background-color: yellow;">P.O. Box 2002</span></td><td><span style="background-color: yellow;">P.O. Box 4000</span></td><td><span style="background-color: yellow;">P.O. Box 4500</span></td><td><span style="background-color: yellow;">P.O. Box 9701</span></td></tr>
|
|
<tr><td><span style="background-color: yellow;">Allen, TX 75013</span></td><td><span style="background-color: yellow;">Allen, TX 75013</span></td><td><span style="background-color: yellow;">Allen, TX 75013</span></td><td><span style="background-color: yellow;">Allen, TX 75013</span></td><td><span style="background-color: yellow;">Allen,TX 75013</span></td></tr>
|
|
|
|
</table>';
|
|
|
|
return $html;
|
|
}
|
|
|
|
function getEquifaxAddress() {
|
|
$html = '<table style="width:100%;">
|
|
<tr><td><span style="background-color: yellow;">Katherine Dunn</span></td><span><td><span style="background-color: yellow;">Equifax Information Services</span></td><td><span style="background-color: yellow;">Equifax Information Services</span></td></tr>
|
|
<tr><td><span style="background-color: yellow;">Assistant General Counsel</span></td><span><td><span style="background-color: yellow;">PO BOX 740241</span></td><td><span style="background-color: yellow;">PO BOX 740256</span></td></tr>
|
|
<tr><td><span style="background-color: yellow;">Equifax LLC</span></td><span><td><span style="background-color: yellow;">Atlanta, GA 30374</span></td><td><span style="background-color: yellow;">Atlanta, GA 30374</span></td></tr>
|
|
<tr><td><span style="background-color: yellow;">1550 Peachtree St</span></td><span><td></td><td></td></tr>
|
|
<tr><td><span style="background-color: yellow;">NE Atlanta, GA 30309</span></td><td></td><td></td></tr>
|
|
</table>';
|
|
|
|
return $html;
|
|
}
|
|
|
|
function getTransUnionAddress() {
|
|
$html = '<table style="width:100%;">
|
|
<tr><td><span style="background-color: yellow;">TRANSUNION</span></td><td><span style="background-color: yellow;">TRANSUNION</span></td><td><span style="background-color: yellow;">TRANSUNION</span></td></tr>
|
|
<tr><td><span style="background-color: yellow;">PO Box 2000</span></td><td><span style="background-color: yellow;">PO Box 1000</span></td><td><span style="background-color: yellow;">PO Box 2000</span></td></tr>
|
|
<tr><td><span style="background-color: yellow;">CHESTER, PA 19016-2000</span></td><td><span style="background-color: yellow;">CHESTER, PA 19022-1000</span></td><td><span style="background-color: yellow;">CHESTER, PA 19022-2000</span></td></tr>
|
|
</table>';
|
|
return $html;
|
|
}
|
|
|
|
function setTextHightlight($text) {
|
|
$result = "";
|
|
if (!empty($text)) {
|
|
$result = "<span style='background-color:yellow;'>" . $text . "</span>";
|
|
}
|
|
|
|
return $result;
|
|
}
|