Ok, so when I use
PHP Code:
<?php
echo("<a href=\"member.php?s=$session[sessionhash]&action=getinfo&userid=$userid\">$bbuserinfo[username]</a>");
?>
In my form as a test it properly displays my username, but the link to the profile is wrong. It takes me to :
http://www.mywebsite.com/vbulletin/m...etinfo&userid=
it leaves the userid off from what I can tell.
When I use
PHP Code:
<a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$userid">$bbuserinfo[username]</a>
as the default value for my form it kind of works, but the results page doesn't display the username. It only displays:
$bbuserinfo[username]
Which then links to :
http://www.mywebsite.com/vbulletin/member.php?s=$session[sessionhash]&action=getinfo&userid=$userid
which isn't correct.
Any idea's? I'm trying everything I can think of. I plan to just use the echo command to display the username on the timeslipadd page, then a hidden form to actually insert into the database, or can I actually use an insert command to get the username into that field at the same time they submit the rest of teh data via the form?
Thanks for all the help guys. I think we are close