here is what i'm trying to do: (thanks in advance, by the way)
i'm trying to integrate this with vBulletin
I want to click on this link:
<a href="t_index_login_test_b.php?videoid=1">View video 1</A>
... and pass that value of videoid as 1 to 'login_test.php' page. In turn, that page checks if the user is logged in or not... here is the statement on that page:
if ($bbuserinfo['userid']!=0) {
// User logged in fine
eval("\$welcometext = \"".gettemplate('index_welcometext')."\";");
eval("\$video_display = \"".gettemplate('video_display_YES')."\";");
} else {
//User isn't logged in
eval("\$welcometext = \"".gettemplate('index_logincode')."\";");
eval("\$video_display = \"".gettemplate('video_display_NO')."\";");
}
The problem is.... i need to be able to eventually pass the videoid variable to the template video_display_YES. (look in the code above).
SOOOO.... i'm stuck. hope this is enough info. let me know if it's not!