1. Go to this page and download the library: Download tigo/recommendation 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/ */
tigo / recommendation example snippets
//Somewhere in your project, you may need to use autoload
/**
$table gets the array from the database.
$user is the foreign key that represents the user who will receive the recommendation.
**/
use Tigo\Recommendation\Recommend; // import class
$client = new Recommend();
$client->ranking($table,$user); //optional third parameter refers to the score not accepted
$client->euclidean($table,$user); //optional third parameter refers to the minimum accepted score
$client->slopeOne($table, $user); //optional third parameter refers to the minimum accepted score