How to change Server.Transfer code to PHP redirect code with member_id

GemweiceGully

New Member
I have a code in VB that looks like this:\[code\]'Server.Transfer(txtUser.Text + "_page.aspx")\[/code\]which is taking a forms authenticated user to their page. For example if John logs in, it will take him to john_page.aspx.How will I be able to integrate this in a PHP login script?I'm trying something like:\[code\]header("location: $member . _page.php");\[/code\]but I don't think I'm doing this correctly. I'm not sure if this is just the wrong syntax or if I'm going about it the wrong way.Any help is appreciated!
 
Back
Top