my credits & belcredits won't show up in me.php

django023

New Member
Jan 3, 2015
1
0
Hello Devbest,

I already asked this question on another website but they could not help me.

So i tought i will try it here.
it don't show the amount of credits but only the word credits


it looks like this in my cms:
Code:
<div id="" class="info-box">

<div class="label">Belcredits, credits & pixels:</div>

<div class="content">{vip_points}, {credits} & {activity_points}</div>

</div>
 

JayC

Always Learning
Aug 8, 2013
5,494
1,398
Sounds like it could be your classes not setup correctly

a simple fix would be :
$sql = mysql_query('SELECT * FROM users WHERE id = '.$_SESSION['user']['id'].'')or die(mysql_error());
<?php echo $sql['credits']; ?>
<?php echo $sql['vip_points']; ?>
<?php echo $sql['activity_points']; ?>
but I don't use revcms
 

Users who are viewing this thread

Top