Hi,
I have a form where users enter information. One field is a text box where the user enters a url. It is stored as text format in my table. I want it to appear as a hypertext link when the user view the information.
This is the code to assign that record in the table to a variable:
$addInfo = $row_Project['ProjectLink'];
This is the code where i want it to print the text stored as a link:
<tr>
<td class="style1" width="32%" ><div align="left" class="style8">Project URL</div></td>
<td scope="row" width="78%"><div align="left" class="style12"><?php if(isset($addInfo)) {echo ($addInfo);} ?></div></td>
</tr>
i'm not sure where to place the <a href> tags. everything i've tried so far has given an error.
Please help...