drupal 6

Creating an internal link to edit a user's profile in Drupal 6

This is how it's done:

<?php
global $user;
if ($user->uid) {
print "<a href=\"user/$user->uid/edit\">Fill in my directory profile</a>";
}
?>

Just choose PHP Filter from input filters. This can be placed anywhere

Syndicate content (C01 _th3me_)