$accountNumber
$meterNumber
$carrier
470034028693
TRACKING_NUMBER_OR_DOORTAG
US
1
XMLREQUEST;
echo "Request
\n";
echo "\n";
print_r(simplexml_load_string($request));
echo "
\n";
echo "Response
\n";
$response = callFedEx($request);
if (!isset($response->TrackProfile->SoftError))
{
foreach ($response->TrackProfile->Scan AS $scanPoint)
{
echo "{$scanPoint->Date},{$scanPoint->Time} - {$scanPoint->ScanDescription} in
{$scanPoint->City}, {$scanPoint->StateOrProvinceCode}
";
}
}else
{
echo "Tracking information not yet available";
}
echo "";
print_r($response);
echo "
";
?>