The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#4
|
||||
|
||||
![]() Quote:
You can export it in tab delimted format in two ways. WAY 1 1) Write the query into a file, lets call it latestposts.sql (make sure you terminate the line with a semi colon) 2) invoke mysql redictecting input from the above script and redirecting the output to a result file mysql -uusername -ppassword mydatabase < latestsposts.sql > results.txt WAY 2 use the into outfile syntax directly from within mysql select * from post where unix_timestamp(now()) - dateline <= 2592000 into outfile '/path/to/directory/results.txt' Alternatively, capture it in vbulletin/php PHP Code:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|