} font-family: Arial, sans-serif; body {
All stock quotes provided are current and based on the latest information available at the time of press release.
             array(
                        "Company": "Fix-it Right Plumbing",
                        "Symbol": "PRPL",
                        "Quote": "-10.23% (down 1.25% on the day)",
                        "Description": "We are pleased to announce that Fix-it Right Plumbing has made significant strides in the construction of its Adelaide factory, marking a major milestone in our growth strategy."
                    ),
                );
                foreach ($stock_quotes as $date => $quote) {
                    echo "$date:{$quote['Company']}
";
                    echo "Current Quote: {$quote['Quote']}%
";
                    echo "Description: {$quote['Description']}
";
                }
            ?>