eCommerce Solutions

Retrieves a list of parts that are related to your curent part.
<!-- getRelatedParts() -->
<?php
require_once('libraries/happpi/LoadAll.php'); // points to the LoadAll.php file for loading the library.
// once the library is required, you can now use one of the main "interaction" classes.
// These interaction classes contain methods that get information from our REST API and
// converts them to PHP objects for you to use.
$Part = new CurtPart(); // create new part object to gain access to its functions.
echo "<h2>Parts related to Part# 11000</h2>";
$Part->setPartID(11000); // set required dependency of partID in order to get related parts.
$listofRelatedParts = $Part->getRelatedParts(); // use getRelatedParts method to retreive an array of related part objects
foreach($listofRelatedParts as $partObj){ // step through the list of part objects
echo $partObj->getShortDesc(); // display each related part's short description.
echo "<br />";
}
?>