HELP make username an email link
Posted: Tue Feb 26, 2008 10:21 am
Hi guys,
I'm sure this is easy for a guru so here's what I want to do. The OUTPUT of my code reads as follows:
Username: jblow
Full Name: Joe Blow
How tough to make the username (in this case 'jblow') a link to his email (that would read 'jblow@company.org')? I suppose it's just a matter of adding the '@company.org' and telling it that the field is an email link.
The existing bit of code is shown below:
echo '<b>Username:</b>';
echo '</td><td>';
echo $row['Username'];
echo '</td>';
echo '</tr>';
echo '<tr>';
echo '<td>';
echo '<b>Full Name:</b>';
echo '</td><td>';
echo $row['FullName'];
Thanks so much in advance!!
I'm sure this is easy for a guru so here's what I want to do. The OUTPUT of my code reads as follows:
Username: jblow
Full Name: Joe Blow
How tough to make the username (in this case 'jblow') a link to his email (that would read 'jblow@company.org')? I suppose it's just a matter of adding the '@company.org' and telling it that the field is an email link.
The existing bit of code is shown below:
echo '<b>Username:</b>';
echo '</td><td>';
echo $row['Username'];
echo '</td>';
echo '</tr>';
echo '<tr>';
echo '<td>';
echo '<b>Full Name:</b>';
echo '</td><td>';
echo $row['FullName'];
Thanks so much in advance!!