vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Checking user logged in or not (https://vborg.vbsupport.ru/showthread.php?t=129524)

samser_m 10-20-2006 08:34 AM

Checking user logged in or not
 
Hi,
1) I want to add a php file with some fields which user should fill up and save on our database.

2) I have to check whether user is currently logged in or not. If yes then user will be able to see the php page otherwise not.

3) I have to retrieve userid and email from "user" table

4) Finally all the details with userid, email will be saved on a new table.

Thanks in advance.

Regards,
Samser

nico_swd 10-20-2006 09:13 AM

Here a basic example
PHP Code:

<?php

define
('THIS_SCRIPT''script');

include(
'./global.php');

if (
$vbulletin->userinfo['userid'] == 0)
{
    
print_no_permission();
}

echo 
'Email: '$vbulletin->userinfo['email'] ."<br />\n";
echo 
'Userid: '$vbulletin->userinfo['userid'];

?>


samser_m 10-21-2006 01:10 PM

Thanks for reply!
is this code would work for both version 3.0.3 and 3.6.1? I think no. because
I have tested in 3.0.3 but it's not working.

First, I have to include header and footer of vBulletin with my script.
Secondly, I need to check whether user is logged in or not
Then I have to retrieve username, email from database.

Eearly reply is appretiated.
Regards


All times are GMT. The time now is 02:22 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01127 seconds
  • Memory Usage 1,714KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete