Ok i'm a beginer into this i have installed vbportal on my server. I want to add more boxes down this sides but the add box only understands html. and the code is in php. so how do i do it what files do i have to edit and how ?? if somone whould give me an example that would be great.
PHP Code:
<?php
// Set this to the max number top posters to display
$num = 25;
$db=mysql_connect($servername,$dbusername,$dbpassword);
mysql_select_db($dbname);
$query = "SELECT * FROM user ORDER BY posts DESC LIMIT $num";
$resultlatest = mysql_query($query,$db);
while ($latest_array = mysql_fetch_array($resultlatest)) {
echo "<FONT SIZE=\"1\" FACE=\"Verdana, Arial, Helvetica, sans-serif\"> ?
<A HREF=\"point to members/member.php?action=getinfo&userid=$latest_array[userid]\">$latest_array[username]</A> ($latest_array[posts])</FONT><BR>";
}
?>
<?
so how would i add that code and where.??