Direct links block

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   Direct links block
WildChildX
CZ Newbie
WildChildX has been a member for over 20 year's 20 Year Member
Status: Offline
Joined: Sep 12, 2003
0.00 posts per day
Posts: 15
Points: 1,637
   
Hi,

I just downloaded your srolling links block and would like to make a little change.

Instead of it showing weblinks I would like it to show links and on clicked go directly to other sites and have a layout like:

Website1 [Hits: 3]
Website2 [Hits: 2]
Website3 [Hits: 1]

I have tried to change it myself but have done something wrong because the block in just blank. icon_sad.gif

Here is what I did:

<?php

/************************************************************************/
/* PHP-NUKE: Web Portal System                                          */
/* ===========================                                          */
/* Cleaned up Code and named scroll function to work in                 */
/* NSN center blocks  Telli http://codezwiz.com/                        */
/*                                                                      */
/* Copyright (c) 2002 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* 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.       */
/*                                                                      */
/* PHP-Nuke Version: 5.4 - 5.5 - 5.6 -6.5                               */
/************************************************************************/
$maxshow = 10;   // Number of downloads to display in the block.

if (eregi("block-ScrollLinks.php",$_SERVER['PHP_SELF'])) {
    Header("Location: index.php");
    die();
}

global $prefix, $db;
$show = "";
$a = 1;
$result = $db->sql_query("SELECT lid, title, hits FROM ".$prefix."_links_links ORDER BY hits DESC LIMIT 0,$maxshow");
while(list($lid, $title, $hits) = $db->sql_fetchrow($result)) {
    $title2 = ereg_replace("_", " ", $title);
$content .= "<b><a href=\"http://www.techgear007.net\">Techgear007</b><br><b>[$hits]</b><br><br>";


   
}
$content  = "<A name= \"scrollingCodeLinks\"></A>\n";
$content .= "<MARQUEE behavior= \"scroll\" align=\"right\" direction= \"up\" height=\"220\" scrollamount= \"2\" scrolldelay= \"90\" onmouseover='this.stop()' onmouseout='this.start()'>\n";
$content .= "$show";
$content .= "</marquee>\n"; 


?>


Thankyou for any help

Andy


Back to top Reply with quote
#2   
Telli
Site Admin
Telli has been a member for over 20 year's 20 Year Member
Occupation: Self Employed
Age: 45
Gender: Male
Fav. Sports Team: Detroit Red Wings
Website:
Status: Offline
Joined: May 26, 2003
1.06 posts per day
Posts: 8089
Points: 494,430
   
Change the:


$content .= "<b><a href=\"http://www.techgear007.net\">Techgear007</b><br><b>[$hits]</b><br><br>";


To:


$show .= "<b><a href=\"http://www.techgear007.net\">Techgear007</b><br><b>[$hits]</b><br><br>";




_________________
The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men. Blessed is he, who in the name of charity and good will, shepherds the weak through the valley of darkness, for he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who would attempt to poison and destroy my brothers. And you will know my name is the Lord when I lay my vengeance upon thee. Ezekiel 25:17
Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
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
You cannot attach files in this forum
You cannot download files in this forum