I'm a bit of a newbie here so sorry if this is really easy. But I'm essentially pulling data from a data feed that just gives me a list of data not formatted whatsoever. I always know the first value from the data source is going to be bogus. So I'm trying to remove it but have no clue how to remove the first value from a loop. Here's my code:
foreach($content as $result){
echo $result->getText();
}
getText(); is essentially a function used to pull the data from the data feed.
If you know another way I can always remove the first value from the loop that would be great.
Thanks and much appreciated!