PHP code example of petermartinez / datafinder-php

1. Go to this page and download the library: Download petermartinez/datafinder-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

petermartinez / datafinder-php example snippets




$search = array();
	$search['d_first']  = "";
	$search['d_last']  = "";
	$search['d_zip'] = "";
	$search['d_fulladdr'] = "";
	$search['d_city']  = "";
	$search['d_state'] = "";
$dataFinder = new Datafinder\Datafinder("APIKEY");
$results = $dataFinder->contactAppend("email",$search);
echo "<pre>";
print_R($results);