vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Random members URL? (https://vborg.vbsupport.ru/showthread.php?t=75252)

roundhost 01-27-2005 06:34 PM

Random members URL?
 
I am currently using the following code to retreive a random members URL:

PHP Code:

$getnames $DB_site->query("
                SELECT
                * FROM user
                ORDER BY rand()
                LIMIT 1
        "
);

        while(
$geturl $DB_site->fetch_array($getnames))
                {
                        if (
$geturl[homepage] == null) {

                            
$rnd_site "<a href=\"http://www.roundhost.net\" target=\"blank\">http://www.roundhost.net</a>";

                        } else {

                            
$rnd_site "<a href=\"$geturl[homepage]\" target=\"blank\">$geturl[homepage]</a>";

                        }

                } 

However, i would like it so that it always gets a member that has a url, rather than changing it to point to roundhost if their url is empty...how could i do this? It should be easy but all my attempts have failed! :(

Thanks in advance,

RoundHost

sabret00the 01-27-2005 06:39 PM

change
PHP Code:

                SELECT
                
FROM user
                ORDER BY rand
()
                
LIMIT 1 

to
PHP Code:

                SELECT
                
FROM user
WHERE homepage 
!= NULL
                ORDER BY rand
()
                
LIMIT 1 


roundhost 01-27-2005 06:56 PM

Thats one of the things i tried before, it just doesnt show anything! (thanks anyway) :o

Andreas 01-27-2005 07:28 PM

PHP Code:

 SELECT
                
FROM user
WHERE homepage 
!= ''
                
ORDER BY rand()
                
LIMIT 1 

?

roundhost 01-27-2005 08:41 PM

Quote:

Originally Posted by KirbyDE
PHP Code:

 SELECT
                
FROM user
WHERE homepage 
!= ''
                
ORDER BY rand()
                
LIMIT 1 

?

Yes! It worked :) Wow, i must have NULL disabled for mysql or something strange :p Thanks a bunch :)

Marco van Herwaarden 01-27-2005 09:10 PM

HAve a look at the "NOT <=>" this is a NULL-save version of "NOT ="

If i remember right

Dean C 01-27-2005 10:01 PM

Btw, no point in selecting * when you just want the homepage. Go easy on your server and save it pulling all those extra un-needed columns ;)


All times are GMT. The time now is 02:42 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.01067 seconds
  • Memory Usage 1,739KB
  • 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
  • (5)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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