vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Member Archives (https://vborg.vbsupport.ru/forumdisplay.php?f=202)
-   -   members information on main page. NEED HELP! (https://vborg.vbsupport.ru/showthread.php?t=7080)

01-21-2001 03:15 PM

If anyone knows a php script that can diaplay the number of registered members, the newest registered member and his/her profile linked to that , will be on my main page not the forum pages. Like the main page on http://www.FlashKit.com

If any one can help me, it would be a blessing!

PS: I tried to make my own from the top 10 post script idea but it bombed out :(

Mike

01-22-2001 02:57 AM

I tried to do this: by modifying the top 10 post script I came up with this but it never worked. I will just trow out the wrong number.

<?
require("forum/admin/config.php");
$db=mysql_connect($servername,$dbusername,$dbpassw ord);
mysql_select_db($dbname);
$myselect = "select * FROM user ";
$result = mysql_query($myselect);
echo "Registered Members ",$result;
?>

This is what I made so far as I am a novice at this stuff.
Right now it is way incorrect, I made 5 registered users and it say it has 2. If anyone can help I would love it!
Once agian I dont know jack about hack, I am learning!

01-22-2001 03:11 AM

Code:

<?php
require("forum/admin/config.php");
$db=mysql_connect($servername,$dbusername,$dbpassword);
mysql_select_db($dbname);
$myselect = 'SELECT COUNT(*) AS count FROM user';
$result = mysql_fetch_array(mysql_query($myselect));
echo "Registered Members ".$result['count'];
?>


01-22-2001 04:26 AM

Thanks Ed! I was so close but so wrong. I think I can wing the rest of the code. I will pu in my code when I finish it all up. So every one can see and use it.

Once again thanks and now I can sleep :)

01-25-2001 04:36 PM

To make the code a bit more optimized change this line:
Code:

$myselect = 'SELECT COUNT(*) AS count FROM user';
To
Code:

$myselect = 'SELECT COUNT(userid) AS count FROM user';
No need to pull all of the fields from the user table.

01-25-2001 04:51 PM

Actually, a COUNT(*) is faster because it just reads the number of rows in a table. COUNT(userid) does a full table scan looking for non-null components only.

01-26-2001 12:49 AM

When I do that, all I get is;

http://www.soapedup.f2s.com/testing.php

What's wrong?! I just put in the .php code you told me, and I get that... Is there anything I need to edit?

01-26-2001 01:12 AM

The only thing on in my .php document is;

<?php
require("http://www.soapedup.f2s.com/bbs/admin/config.php")include_path='.:/usr/local/lib/php;
$db=mysql_connect($servername,$dbusername,$dbpassw ord);
mysql_select_db($dbname);
$myselect = 'SELECT COUNT(*) AS count FROM user';
$result = mysql_fetch_array(mysql_query($myselect));
echo "Registered Members ".$result['count'];
?>

..and nothing more... do I need to edit something? What? I have V Bulletin 1.14..-

01-26-2001 01:16 AM

Quote:

Originally posted by badmeetsevil-
The only thing on in my .php document is;

<?php
require("http://www.soapedup.f2s.com/bbs/admin/config.php")include_path='.:/usr/local/lib/php;
$db=mysql_connect($servername,$dbusername,$dbpassw ord);
mysql_select_db($dbname);
$myselect = 'SELECT COUNT(*) AS count FROM user';
$result = mysql_fetch_array(mysql_query($myselect));
echo "Registered Members ".$result['count'];
?>

..and nothing more... do I need to edit something? What? I have V Bulletin 1.14..-


Should be:
require("http://www.soapedup.f2s.com/bbs/admin/config.php");
include_path="./usr/local/lib/php";

01-26-2001 10:25 PM

I changed that.. yet get another phrase error on line 3.. whats wrong?


All times are GMT. The time now is 08:17 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.01891 seconds
  • Memory Usage 1,736KB
  • 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
  • (3)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete