I need to link to an external site in my drop down menu that hosts a pdf that changes file name every Friday. I had previously asked this question but I am a beginner to php so I am having a tough time implementing it. Any help would be greatly appreciated.
Ex.
www.extranet.frostyacres.com/portal_resources/1/Market Report 05-24-13.pdf
www.extranet.frostyacres.com/portal_resources/1/Market Report 05-31-13.pdf
www.extranet.frostyacres.com/portal_resources/1/Market Report 06-07-13.pdf
www.extranet.frostyacres.com/portal_resources/1/Market Report 06-14-13.pdf
I have tried to use this in a drop down menu in an html file, not sure if thats possible.
$startingDate = strtotime('2013-06-07');
echo '<a href="https://www.extranet.frostyacres.com/portal_resources/1/Market Report ' . date('m-d-y', $startingDate) . '.pdf">Market Reports</a>';
?