vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Member Archives (https://vborg.vbsupport.ru/forumdisplay.php?f=202)
-   -   random profiles on non-vb page (https://vborg.vbsupport.ru/showthread.php?t=57706)

sabret00the 10-07-2003 10:49 PM

random profiles on non-vb page
 
can you help me with this snippet of code please

PHP Code:

<?php

$randname
="SELECT username, userid FROM user ORDER BY rand() LIMIT 1"

echo (
"<a href=\"forums/member.php?s=&action=getinfo&userid=$randname\"><img src=\"img/v2-rand_prof.png\" alt=\"random profile\" width=\"292\" height=\"136\" border=\"0\" /></a>"); 

?>



when you click the image that that produces it's meant to send you to a random profile but instead of making the userid it gives me the query as the link

e.g. http://www.ebslive.com/forums/member...&userid=SELECT username, userid FROM user ORDER BY rand() LIMIT 1

sabret00the 10-07-2003 11:50 PM

ok figured it out kinda
PHP Code:

<?php
$randpro2 
"SELECT * FROM user WHERE userid > 0 AND usergroupid != 10 AND usergroupid != 11"
$randprof rand(0,$numbermembers); 
echo (
"<a href=\"forums/member.php?s=&action=getinfo&userid=$randpro2\"><img src=\"img/v2-rand_prof.png\" alt=\"random profile\" width=\"292\" height=\"136\" border=\"0\" /></a>");
?>

just need to get $randpro2 to echo the number of users instead of the users, can someone help?

Dean C 10-08-2003 01:56 PM

PHP Code:

$random $DB_site->query_first("SELECT userid,usergroupid FROM user WHERE userid > 0 AND usergroupid <> 10 AND usergroupid <> 11 ORDER BY rand()");

echo 
"<a href=\"forums/member.php?s=&action=getinfo&userid=$random[userid]\"><img src=\"img/v2-rand_prof.png\" alt=\"random profile\" width=\"292\" height=\"136\" border=\"0\" /></a>"


sabret00the 10-08-2003 04:22 PM

thanks mist, it's greatly appreciated :)

Dean C 10-08-2003 05:53 PM

Your welcome :) It's always nice answering such simple questions from a place in learning where I was only 6months ago :)

sabret00the 10-09-2003 02:57 PM

i have an additional query mist, how would i edit the code so it only shows members with more > 0 posts?

Dean C 10-09-2003 05:32 PM

PHP Code:

 $random $DB_site->query_first("SELECT userid,usergroupid FROM user WHERE userid > 0 AND usergroupid <> 10 AND usergroupid <> 11 AND posts > 0 ORDER BY rand()");

echo 
"<a href=\"forums/member.php?s=&action=getinfo&userid=$random[userid]\"><img src=\"img/v2-rand_prof.png\" alt=\"random profile\" width=\"292\" height=\"136\" border=\"0\" /></a>"

:)

sabret00the 10-09-2003 09:48 PM

i get this error

Quote:

Fatal error: Call to a member function on a non-object in /home/ebslive/public_html/index.php on line 161

Dean C 10-10-2003 03:20 PM

And what is on that line?

sabret00the 10-10-2003 03:54 PM

Quote:

$random = $DB_site->query_first("SELECT userid,usergroupid FROM user WHERE userid > 0 AND usergroupid <> 10 AND usergroupid <> 11 AND posts > 0 ORDER BY rand()");

is that line exactly


All times are GMT. The time now is 02:40 PM.

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.01226 seconds
  • Memory Usage 1,738KB
  • 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
  • (4)bbcode_php_printable
  • (2)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