Although I am new at php, I have been reading tons. I'm completely unaware of the syntax and really cant find a similar example to be able to help myself... I have the following line of code and would like to turn the variable $dayNumber into a clickable link...any help would be appreciated and thanks in advance!
echo "<td width='100' align='right' valign='top'>" . $dayNumber ."</a></td>\n";
You'll need to use the HTML anchor tag:
<a href="/link/location.html">Link Text</a>
So your PHP code would look something like this:
echo "<td width='100' align='right' valign='top'><a href='/link/location.html'>" . $dayNumber ."</a></td>\n";
Thanks so much, i spent hours trying to find the correct syntax....