vBulletin 4, the most powerful community software + vBSEO 3.5, the ultimate SEO solution = Your ultimate platform for 2010 and beyond. Click below to learn more.

Results 1 to 3 of 3

code that works with vbseo?

This is a discussion on code that works with vbseo? within the Troubleshooting forums, part of the vBSEO SEO Plugin category; Hello, This code is so that the latest post in the forums are displayed in the front page of my ...

  1. #1
    Senior Member Julio's Avatar
    Real Name
    Julio
    Join Date
    Aug 2006
    Location
    Bronx, NY
    Posts
    301

    code that works with vbseo?

    Hello,

    This code is so that the latest post in the forums are displayed in the front page of my website template. The problem is that it does not work with vbseo but only with vbulletin. Is there anyway someone can make this code work with vbseo?

    I think the problem has to do with the hightlighted part of the url but i am not sure. :(

    Code:
    <?php
    mysql_select_db("data_base");
    
    $topics = mysql_query("SELECT `threadid`, `title` FROM `thread` ORDER BY `lastpost` DESC LIMIT 0, 6") or die(mysql_error());
    
    while ($topic = mysql_fetch_assoc($topics))
    
        echo "<li class=\"even\"><a href=\"/forum/showthread.php?goto=newpost&amp;t=", $topic["threadid"], "\"><span>", ((strlen($topic["title"]) > 23) ? substr($topic["title"], 0, 20) . "..." : $topic["title"]), "</span></a></li>";
    
    ?>
    

  2. #2
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul
    Posts
    16,459
    Blog Entries
    4
    Hello Julio ,

    Please check vBSEO Functions for Extensibility
    Mert Gökçeimam / Crawlability Inc.

    Yeni vBSEO Kontrol Paneli ve vBSEO 3.5 Yayın Tarihleri

    vBSEO 3.5 Beta 2 Yayınlandı - vBulletin 4 Uyumlu!



    Kişisel Sitem : Felsefe - Kültür merkeziniz

  3. #3
    Senior Member Julio's Avatar
    Real Name
    Julio
    Join Date
    Aug 2006
    Location
    Bronx, NY
    Posts
    301
    Thanks Mert,

    I don't know how to code :(

Similar Threads

  1. Replies: 0
    Last Post: 12-16-2008, 03:31 AM
  2. VBseo works with php fastcgi?
    By MarkoP in forum Pre-Sales Questions
    Replies: 9
    Last Post: 08-04-2008, 11:05 PM
  3. vBSEO works
    By briansol in forum Off-Topic & Chit Chat
    Replies: 4
    Last Post: 08-12-2006, 09:19 PM
  4. proof that vbseo works
    By hornstar6969 in forum Analysis: Traffic & SERPS
    Replies: 20
    Last Post: 07-22-2006, 04:44 AM