101 lines
2.4 KiB
PHP
101 lines
2.4 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 getExperianAddress() {
|
|
$html = '<table style="width:100%">
|
|
<tr>
|
|
<td style="width:25%">
|
|
<span style="background-color:yellow">
|
|
Experian<br/>
|
|
POB 1200<br/>
|
|
Allen TX 75013<br/>
|
|
</span>
|
|
</td>
|
|
<td style="width:25%">
|
|
<span style="background-color:yellow">
|
|
Experian<br/>
|
|
POB 4000<br/>
|
|
Allen TX 75013<br/>
|
|
</span>
|
|
</td>
|
|
<td style="width:25%">
|
|
<span style="background-color:yellow">
|
|
Experian<br/>
|
|
POB 4500<br/>
|
|
Allen TX 75013<br/>
|
|
</span>
|
|
</td>
|
|
<td style="width:25%">
|
|
<span style="background-color:yellow">
|
|
Experian<br/>
|
|
POB 9701<br/>
|
|
Allen TX 75013<br/>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
</table>';
|
|
|
|
return $html;
|
|
}
|
|
|
|
function getEquifaxAddress() {
|
|
$html = '<table style="width:100%">
|
|
<tr>
|
|
<td style="width:25%">
|
|
<span style="background-color:yellow">
|
|
EQUIFAX<br/>
|
|
POB 740241<br/>
|
|
Atlanta GA 30374-0241<br/>
|
|
</span>
|
|
</td>
|
|
<td style="width:25%">
|
|
<span style="background-color:yellow">
|
|
EQUIFAX<br/>
|
|
POB 740256<br/>
|
|
Atlanta GA 30374-0256<br/>
|
|
</span>
|
|
</td>
|
|
|
|
</tr>
|
|
</table>';
|
|
|
|
return $html;
|
|
}
|
|
|
|
function getTransUnionAddress() {
|
|
$html = '<table style="width:100%">
|
|
<tr>
|
|
<td style="width:25%">
|
|
<span style="background-color:yellow">
|
|
Trans Union<br/>
|
|
POB 1000<br/>
|
|
Chester PA 19022<br/>
|
|
</span>
|
|
</td>
|
|
<td style="width:25%">
|
|
<span style="background-color:yellow">
|
|
Trans Union<br/>
|
|
POB 2000<br/>
|
|
Chester PA 19022<br/>
|
|
</span>
|
|
</td>
|
|
|
|
</tr>
|
|
</table>';
|
|
return $html;
|
|
}
|
|
|
|
function setTextHightlight($text) {
|
|
$result = "";
|
|
if (!empty($text)) {
|
|
$result = "<span style='background-color:yellow;'>" . $text . "</span>";
|
|
}
|
|
|
|
return $result;
|
|
}
|