How can I add three small URL Links to appear just above the Top of this block? I want to add the Search Module Link and a link to my Mp3 Section.
Or how can I add 3 URL links to the Site Info Block that you have?
Code:
<?php
########################################################################
# PHP-Nuke Block: $ThemeSel Center Forum Block v.2 #
# Made for PHP-Nuke 6.5 and up #
# #
# Made by mikem http://www.nukecops.com #
# This block is made only to match the $ThemeSel Theme pack #
########################################################################
# This program is free software. You can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License. #
# If you modify this, let me know for fun. =) #
# Modified for the Nukecops.com Google Tap files. Fully Tapped! #
########################################################################
if (eregi("block-Recent_Forum_Posts.php",$PHP_SELF)) {
Header("Location: index.php");
die();
}
$result2 = sql_query("SELECT username, user_id FROM ".$prefix."_users where user_id='$topic_poster'", $dbi);
list($username, $user_id)=sql_fetch_row($result2, $dbi);
$avtor=$username;
$sifra=$user_id;
$result3 = sql_query("SELECT poster_id, FROM_UNIXTIME(post_time,'%m/%d/%Y at %H:%i') as post_time FROM ".$prefix."_bbposts where post_id='$topic_last_post_id'", $dbi);
list($poster_id, $post_time)=sql_fetch_row($result3, $dbi);
$result4 = sql_query("SELECT username, user_id FROM ".$prefix."_users where user_id='$poster_id'", $dbi);
list($username, $user_id)=sql_fetch_row($result4, $dbi);
Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
Posted:
Thu Mar 25, 2004 8:27 am
"Feed a man a fish and you feed him for a day. Teach a man to fish and you feed him for a lifetime"
All blocks require the $content variable to hold all HTML output for the block. So, to add/change anything in a block you need to modify $content. Now, knowing that, find the area of html output that you want to modify and modify the $content variable at that point
View next topic View previous topic
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum