Passing Data with URLs
Posted: Thu Oct 17, 2002 3:26 am
Hi,
I am new to php and I have a small problem. I have a database (mysql) driven webpage displaying events and meeting. Some of these events have websites and or pdf documents for extra information.
At the moment when I fill my webpage with all the data, I only see the flat text of the link/document:
if ($row["link"] != "")
echo "\n<tr>\n\t<td bgcolor=\"#FFFFCC\">" .
"<b>Link: </b>" .
$row["link"] .
"</td>\n</tr>";
I have tried various combinations of "<a href=\"$row["link"]"\">, but none seem to work.
I would also like to let my users upload and download pdf documents. How can I do this?
Any information would be most greatfully appreciated.
Bob. H. :oops
?>
I am new to php and I have a small problem. I have a database (mysql) driven webpage displaying events and meeting. Some of these events have websites and or pdf documents for extra information.
At the moment when I fill my webpage with all the data, I only see the flat text of the link/document:
if ($row["link"] != "")
echo "\n<tr>\n\t<td bgcolor=\"#FFFFCC\">" .
"<b>Link: </b>" .
$row["link"] .
"</td>\n</tr>";
I have tried various combinations of "<a href=\"$row["link"]"\">, but none seem to work.
I would also like to let my users upload and download pdf documents. How can I do this?
Any information would be most greatfully appreciated.
Bob. H. :oops
?>