OK let's try this one:
This looked like an easy one to me (a beginner)
Your PM storage warning!
phpinclude:
if (strpos($_SERVER['PHP_SELF'], 'index.php') != false)
{
$pmwarning = '';
$result = mysql_query("SELECT COUNT(*) FROM privatemessage WHERE userid=$bbuserinfo[userid]");
if ($result)
{
$s = mysql_fetch_row($result);
if (intval($s[0]) / $pmquota > 0.8)
{
$pmwarning = '<br><font color="#FF0000">You are running out of space in your private message storage.</font>';
}
}
}
forumhome_pmloggedin:
$pmwarning
Now it's set at 80% but I changed the settings to 10% to test the script (0.1)...
Without result!
No matter what I do nothing shows up
This is just one example, like I said it's just like my phpinclude does not work
Please help?
Maxx