tenaki
03-24-2004, 11:02 PM
Hi
I have a php/mysql database and I'm looking for a way to make one of the fields into a simple clickable link (email)
At the moment when I or a member adds an email address it shows up as just plain text, I would like it clickable.
I have found 2 areas where I think it needs to be changed can anyone point me in the right direction.
if ( $config_field_4 != "" )
{
if ( $field_1 == true )
{
echo " | ";
}
echo "<b>" . $config_field_4 . "</b>";
}
Or this one
if ( $config_field_4 != "" )
{
item_details_line ( $item_config_field_4, $config_field_4, $column1_width, $column2_width, $bg_colour );
}
I have a php/mysql database and I'm looking for a way to make one of the fields into a simple clickable link (email)
At the moment when I or a member adds an email address it shows up as just plain text, I would like it clickable.
I have found 2 areas where I think it needs to be changed can anyone point me in the right direction.
if ( $config_field_4 != "" )
{
if ( $field_1 == true )
{
echo " | ";
}
echo "<b>" . $config_field_4 . "</b>";
}
Or this one
if ( $config_field_4 != "" )
{
item_details_line ( $item_config_field_4, $config_field_4, $column1_width, $column2_width, $bg_colour );
}