I have 12 records in my array but I only want to print out one specific value, I have tried the following:
<p><?php echo $percentSKU['PercentageSales'][0]; ?></p>
But this is printing out the first character not the first complete value.
For example. If my records were: Monday, Tuesday, Wednesday etc. I want to just get Monday but its just giving me 'M'.
Can someone point me in the right direction?