PHP Driver Files: decode.php

This file is used by the ARDI user interface to convert the saved data link address (generated in encode.php) to something that can be read by human-beings.

Below is an example from the text driver. Since there is only a single element in the address, we simply copy $address (the current, encoded address) to $results (the decoded address).

<?php
	$results = $address;
?>

This results in a string saying the lookup value we are using to find the value in our text driver.