[insert_php]
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ GETTING INFO FROM URL
$appID = $_GET[‘loanappid’];
$cash = $_GET[‘val’];
$year = $_GET[‘carYear’];
$model = $_GET[‘carModel’];
$name = $_GET[‘customerName’];
$make = $_GET[‘carMake’];
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ GETTING INFO FROM URL
[/insert_php]
THANK YOU [insert_php] echo $name; [/insert_php],
Your Application Id: [insert_php] echo $appID; [/insert_php]
South Carolina Title Loans can get you up to:[insert_php]
if ($cash == 0) {
echo “Sorry, we’re currently unable to give you a quote. Please call us for a free quote.”;
} else {
echo ‘$ ‘.$cash;
}
[/insert_php]
Vehicle Year: [insert_php] echo $year; [/insert_php]
Vehicle Make: [insert_php] echo $make; [/insert_php]
Vehicle Model: [insert_php] echo $model; [/insert_php]

