Search code examples
phpvbulletin

How do I get vBulletin forum URL?


I am writing a SQL query to query a vBulletin database. My file resides in the forum's root directory. I will create a HTML file and add a link to title_clean field. How can I get the URL? There is no link field in the database.

SELECT  `title_clean` ,  `description_clean` ,  `replycount` ,  `threadcount` 
FROM  `forum` fr

Solution

  • This is how I got the URL/link

    $link = fetch_seo_url('thread|nosession|fullurl|js', $thread, array('goto' => 'newpost'));