this is what I'm using
echo "<td>" . $row['related_files'] . "</td>";
the pictures associated with this table row show up in my table.
For example in my "related files" column, the text "Picture 26.png" would be displayed.
I want to automatically create hyperlinks to all the "related files" within my table. so that when I click on "Picture 26.png" it downloads. I'm just too much of newbie to figure out how to do it.
I would assume the code would look something like this:
echo "<td>"<a href="http://whereismyjob.cdacasino.com/uploads/">http://whereismyjob.cdacasino.com/uploads/</a> . $row['related_files'] . "</td>";
but of course that doesnt work.
(FYI-all "related files" get uploaded to the "uploads" directory)
Any suggestions?
Thanks in advance
-b