![]() |
I need some help with this if/else statement
I have added the option in the User Control Panel to select whether or not you want an email response each time some one replies to a thread you have requested email notifications on or just the one time (as is vBulletin's default).
I have added a row to the User table called allemail and then in the email notification section of the functions.php file I added if ($bbuserinfo['allemail']==0) { $useremails=$DB_site->query("SELECT user.* FROM subscribethread,user WHERE subscribethread.threadid='$threadid' AND subscribethread.userid=user.userid AND user.userid<>'$userid' AND user.lastactivity>'$lastposttime[dateline]'"); } else { $useremails=$DB_site->query("SELECT user.* FROM subscribethread,user WHERE subscribethread.threadid='$threadid' AND subscribethread.userid=user.userid AND user.userid<>'$userid'"); } When they select "No" the value is zero and they should just get one response. If "Yes" they should get a response each time. As it is working now though they get a response each time. So it appears to me that the if statement isn't working and it just defaults to the last statement. Allemail is getting set to 1 or 0 just fine from the user control panel but the script does not appear to recognize the if else routine. Any ideas on how to get this to work? Thanks, Parker |
simple debuging skills... "When in doubt, print it out." ;)
print the value of $bbuserinfo['allemail'] |
Mark:
Sorry, I am not the great of a coder. How would I go about printing this out? Parker |
Is $bbuserinfo available in that function?
|
Chen:
It should be. Here is a bit more of the code in question as I have it written into the existing code. Code:
....$lastposttime=$DB_site->query_first("SELECT dateline Any ideas? Parker |
Oh ok I see the problem now, you are coding this the wrong way.
Replace this: Code:
$useremails=$DB_site->query("SELECT user.* Code:
$useremails=$DB_site->query("SELECT user.* Code:
if (!$touser['allemail'] and $touser['lastactivity']<=$lastposttime['dateline']) Code:
while ($touser=$DB_site->fetch_array($useremails)) { |
Ok so I would end up with
Code:
$lastposttime=$DB_site->query_first("SELECT dateline Thanks, Parker |
Yes.
|
Chen:
Again that did it and again you have helped me out a great deal. Thanks, Parker |
All times are GMT. The time now is 01:18 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 | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|