ok for example you see what Is on the last array with the foreach I can access the first part of the array using
TrackDetails[TrackingNumber]
TrackDetails[TrackingNumberUniqueIdentifier]
TrackDetails[CarrierCode]
TrackDetails[ShipTimestamp]
The Above work fine but when I try to access the second part of that array
TrackDetails[DestinationAddress][City],TrackDetails[DestinationAdderess][State] This comes up as array looking like this
Array[City],Array[State]
If I try it like this
TrackDetails[City],TrackDetails[State]
it only comes up with a comma
This is how I am trying to echo it
echo("div id='FedexMain'>
<div class='FedexHeader'>Content for class 'FedexHeader' Goes Here</div>
<div class='FedexHeader2'>Unique Identifer:$TrackDetail[TrackingNumberUniqueIdentifier]</div>
<div class='FedexHeader3'>
<div class='TrackingNumber'>Tracking Number:</div>
<div class='TrackingNumber'>$TrackDetail[TrackingNumber]</div>
<div class='TrackingNumber'>Destination:</div>
<div class='TrackingNumber'>$TrackDetail[DestinationAddress][City],$TrackDetail[DestinationAddress][State]</div>
<div class='TrackingNumber'>Signed for by:</div>");
Even if I put numbers it shows up with the numbers ?
If the above does not connect the first time refresh it means it timed out