12 days of christmas

Need help with writing a code 12 days of Christmas in PHP i’m so lost and frustrated please help! :cold_sweat:

<?php

header("Content-Type: text/plain; charset=UTF-8");

$days = array(
    'first', 'second', 'third', 'fourth', 'fifth', 'sixth', 
	'seventh', 'eighth', 'ninth','tenth', 'eleventh', 'twelfth',
);

echo str_repeat("On the day of Christmas, 
my true love gave to me.",12); 

$presents = array(
    "A partridge in a pear tree",
    "Two turtle doves",
    "Three french hens",
    "Four calling birds",
    "Five golden rings",
    "Six geese a-laying",
    "Seven swans a-swimming",
    "Eight maids a-milking",
    "Nine ladies dancing",
    "Ten lords a-leaping",
    "Eleven pipers piping",
    "Twelve drummers drumming"
);

Thank You so much for your time!

I took the liberty of marking this as source code for you. (Moderator)