Jump to content

Trouble getting a "random" featured user


TOA

Recommended Posts

Hey guys,

 

I'm having an issue. I'm trying to write a script that features a random user.

I wrote it this way first:

 

Featured(Feat_ID, User_ID)

 

featureMe.php

$feat_res = mysql_query("SELECT DISTINCT User_ID FROM Featured WHERE User_ID='$_SESSION[userID]'", $connection);
if (mysql_num_rows($feat_res) == 0) {
if (!$feat_res = mysql_query("INSERT INTO Featured (User_ID) VALUES ('$_SESSION[userID]')", $connection)) {
	die("Error:".mysql_error());
} else {
	echo "You have been added to our list. Thank you for sharing your story!";
	header("refresh:2; url='profile.php'");
}
} else {
echo "You have already been added to our <b>Feature Me!</b> list";
header("refresh:2; url='profile.php'");
}

 

featuredUser.php

$num_users = mysql_num_rows(mysql_query("SELECT User_ID FROM Featured", $connection));

$rand_num = mt_rand(1, $num_users);

$users_res = mysql_query("SELECT User_ID FROM Featured WHERE Feat_ID=$rand_num", $connection);
if (mysql_num_rows($users_res) == 0) {
	echo "Could not complete query. Error:".mysql_error();
} else {
	while ($row_u = mysql_fetch_assoc($users_res)) {
		echo '<b>'.$row_u[user_ID]."</b><br />\r\n";
		$user = $row_u[user_ID];
		$bio_res = mysql_query("SELECT F_NAME, L_Name, Email FROM User WHERE User_ID='$user'", $connection);
		while ($row_b = mysql_fetch_assoc($bio_res)) {
			foreach ($row_b as $key => $value) {
				echo $value.'<br />';
			}
		}
	}

}

 

but when I delete a user from the "Featured" table, the code is just as likely to break as get a featured user (I think because of the way I got a random user)

 

So then I thought I could add a field in the User table ("Featured") with a Bool value for yes or no

Here's that code:

featuredUser(2).php

 

$feat_res = mysql_query("SELECT User_ID FROM User WHERE Featured=1", $connection);

while ($row_f = mysql_fetch_assoc($feat_res)) {
echo $row_f[user_ID].'<br />';
}

 

but am having issues getting a random user. Maybe I've been over this too many times, I'm not sure, but if anyone has any thoughts, ideas, suggestions, I'm all ears.

 

Hope I've provided enough info.

 

Thanks for reading

Link to comment
https://forums.phpfreaks.com/topic/203547-trouble-getting-a-random-featured-user/
Share on other sites

Ok, here's what I came up with for the second solution...let me know if anyone sees anything wrong, because I think it works...

 

$feat_res = mysql_query("SELECT User_ID FROM User WHERE Featured=1 ORDER BY RAND() LIMIT 1", $connection);
while ($row_f = mysql_fetch_assoc($feat_res)) {
echo $row_f[user_ID].'<br />';
}

 

(solution found here:

http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html#function_rand)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.