Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Shoutbox text in marquee

Asked Modified Viewed 2,323 times
T
Torstein
T
  • Newbie, joined since
  • Contributed 8 posts on the community forums.
  • Started 4 threads in the forums
  • Started this discussions
asked
Newbie

anyone some can make a shoutbox infusion there the text come in marquee under the banner?????
0 replies

6 posts

K
KasteR
K
KasteR 10
  • Senior Member, joined since
  • Contributed 290 posts on the community forums.
  • Started 1 thread in the forums
answered
Senior Member

You may want to elaborate on the banner. Which banner? And I'm sure if someone makes this, they'll more than likely want to know what exactly you mean.

Are you asking to display a certain amount? The last post? Last five? Also sounds like more of a mod to the header, than an infusion.
0 replies
T
Torstein
T
  • Newbie, joined since
  • Contributed 8 posts on the community forums.
  • Started 4 threads in the forums
  • Started this discussions
answered
Newbie

Here are a example why i think

torsteinram.byethost10.com/images/here.png
i think i will display the five latest post.
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Here I've knocked this quikly up for you.

Paste this into a center panel....

This does as you asked, displays latest 5 shouts using <marquee>.

<?php
/*-------------------------------------------------------+
| PHPFusion Content Management System
| Copyright (C) 2002 - 2011 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: shoutbox_panel.php
| Author: Nick Jones (Digitanium)
| Marquee Latest Shouts
| Author: Craig
| Site: http://www.phpfusionmods.co.uk
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }

include_once INFUSIONS."shoutbox_panel/infusion_db.php";

opentable("Latest Shouts");

$result = dbquery(
   "SELECT ts.shout_id, ts.shout_name, ts.shout_message, ts.shout_datestamp, tu.user_id, tu.user_name, tu.user_status, tu.user_lastvisit
   FROM ".DB_SHOUTBOX." ts
   LEFT JOIN ".DB_USERS." tu ON ts.shout_name=tu.user_id
   WHERE shout_hidden='0'
   ORDER BY ts.shout_datestamp DESC LIMIT 0,5"
);


if (dbrows($result)) {

echo"<marquee>";

while ($data = dbarray($result)) {

echo"".profile_link($data['shout_name'], $data['user_name'], $data['user_status'])."  ".showdate("forumdate", $data['shout_datestamp'])." - ".parseubb(parsesmileys($data['shout_message']), "b|i|u|url|color")." - ";
}

echo"</marquee>";

}else{

echo"No Shouts";

}
closetable();
?>
0 replies
T
Torstein
T
  • Newbie, joined since
  • Contributed 8 posts on the community forums.
  • Started 4 threads in the forums
  • Started this discussions
answered
Newbie

Quote

Craig wrote:

Here I've knocked this quikly up for you.

Paste this into a center panel....

This does as you asked, displays latest 5 shouts using <marquee>.

<?php
/*-------------------------------------------------------+
| PHPFusion Content Management System
| Copyright (C) 2002 - 2011 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: shoutbox_panel.php
| Author: Nick Jones (Digitanium)
| Marquee Latest Shouts
| Author: Craig
| Site: http://www.phpfusionmods.co.uk
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }

include_once INFUSIONS."shoutbox_panel/infusion_db.php";

opentable("Latest Shouts");

$result = dbquery(
   "SELECT ts.shout_id, ts.shout_name, ts.shout_message, ts.shout_datestamp, tu.user_id, tu.user_name, tu.user_status, tu.user_lastvisit
   FROM ".DB_SHOUTBOX." ts
   LEFT JOIN ".DB_USERS." tu ON ts.shout_name=tu.user_id
   WHERE shout_hidden='0'
   ORDER BY ts.shout_datestamp DESC LIMIT 0,5"
);


if (dbrows($result)) {

echo"<marquee>";

while ($data = dbarray($result)) {

echo"".profile_link($data['shout_name'], $data['user_name'], $data['user_status'])."  ".showdate("forumdate", $data['shout_datestamp'])." - ".parseubb(parsesmileys($data['shout_message']), "b|i|u|url|color")." - ";
}

echo"</marquee>";

}else{

echo"No Shouts";

}
closetable();
?>


Thanks:)
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Welcome smile
0 replies
T
Torstein
T
  • Newbie, joined since
  • Contributed 8 posts on the community forums.
  • Started 4 threads in the forums
  • Started this discussions
answered
Newbie

Have you a idea how to i can get a twitter feed in marqueen?
0 replies

Category Forum

Panels and Infusions

Labels

None yet

Statistics

  • Views 0 views
  • Posts 6 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

C
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
T
T
  • Newbie, joined since
  • Contributed 8 posts on the community forums.
  • Started 4 threads in the forums
  • Started this discussions
K
K
KasteR 10
  • Senior Member, joined since
  • Contributed 290 posts on the community forums.
  • Started 1 thread in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet