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
    312
    Liked
    0 times

    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, Turkey, Turkey
    Posts
    22,340
    Liked
    539 times
    Blog Entries
    4
    Hello Julio ,

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

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  3. #3
    Senior Member Julio's Avatar
    Real Name
    Julio
    Join Date
    Aug 2006
    Location
    Bronx, NY
    Posts
    312
    Liked
    0 times
    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

Posting Permissions

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