Forum Moderators: coopster
When people sign up, they have to fill in a form with their personal info.
I have the possibility to create a "you homepage" line in the form, but the link is not clickable.
When I set the variable fields details, I have the posibility to "Display the Format".
I do not know exactly what that means ... I'm Dutch :-)) Maybe you can put a string o.s. in here
so that the link will be clickable?
Any suggestions?
[edited by: jatar_k at 5:28 pm (utc) on Feb. 16, 2004]
[edit reason] removed url [/edit]
From a form POST:
$mylink = (isset($_POST['mylink']))? $_POST['mylink'] : '';
if ($mylink) print "<a href=\"$mylink\">$mylink</a>";
$sql = "SELECT mylink FROM mytable";
$rows = mysql_query($sql);
$row = mysql_fetch_assoc($rows);
$mylink = $row['mylink'];
if ($mylink) print "<a href=\"$mylink\">$mylink</a>";