Include global.php in your non-vb pages, be sure to add the session data to each link on and to your own site, for the login use a small form that contains something like:
<form action="/forum/member.php" method="post">
Username: <input type="text" name="username"><br>
Password: <input type="password" name="password"><br>
<input type="hidden" name="action" value="login">
<input type="hidden" name="url" value="/index.php?s=">
<input type="submit" value="Login">
</form>
|