+ Reply to Thread
Results 1 to 3 of 3

Thread: Little bit of help on music block
      
   

  1. #1
    Aliens Anonymous is offline Special Status
    Join Date
    Jan 2006
    Location
    Dark side of the moon
    Posts
    1,161

    Default Little bit of help on music block

    Im in the middle of building a portal forum for a friend, were he wants music, games, the full works, he wanted to know if he could have a block on the portal index page which shows the newest music upload, as there is no im portal block that does this i have rewritten one, only i'm having a bit of trouble pulling the info for the image to appear, everything else works but that . link script is below and you can see it HERE
    IF anyone could point the mistake i would be gratefull

    <?php

    if ( !defined('IN_PHPBB') )
    {
    die("Hacking attempt");
    }
    if(!function_exists(imp_newest_song_block_func))
    {
    function imp_newest_song_block_func()
    {
    global $template, $table_prefix, $db, $lang, $phpEx, $board_config;
    $sql = "SELECT song_id, song_imagename, song_title, song_singer, song_time FROM " .$table_prefix. "music WHERE song_approval <> 0 ORDER BY song_time DESC LIMIT 0,1";
    if (!$result = $db->sql_query($sql))
    {
    message_die(GENERAL_ERROR, 'Could not query music information', '', __LINE__, __FILE__, $sql);
    }
    $picrow = $db->sql_fetchrow($result);
    $db->sql_freeresult($result);
    $template->assign_vars(array(
    'L_NEWEST_SONG' => $lang['Newest_song'],
    'SONG_IMAGE' => append_sid('music_page.' . $phpEx . '?song_imagename=' . $picrow['song_imagename']),
    'SONG_TITLE' => $picrow['song_title'],
    'SONG_POSTER' => $picrow['song_singer'],
    'U_SONG_LINK' => append_sid('music_page.' . $phpEx . '?song_id=' . $picrow['song_id']),
    'SONG_TIME' => create_date($board_config['default_dateformat'], $picrow['song_time'], $board_config['board_timezone'])
    )
    );
    }
    }
    imp_newest_song_block_func();
    ?>

  2. #2
    Aliens Anonymous is offline Special Status
    Join Date
    Jan 2006
    Location
    Dark side of the moon
    Posts
    1,161

    Default Re: Little bit of help on music block

    Ok all sorted case closed.

  3. #3
    allstarfaces's Avatar
    allstarfaces is offline Brigadier General
    Join Date
    Apr 2006
    Location
    manchester england
    Posts
    1,665

    Default Re: Little bit of help on music block

    i tell you what you are good you you know

    i love you man i realy do
    The get vasili to join our forum campaign has begun



    www.thatgoodsite.com and our forum of fun also starring my hero vasili
    Weve got movies,arcade,radio,T.V,chat,music,funny vids,jokes and lots and lots of fun for free

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49