The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
For anyone who is familiar with Photopost Classifieds - I'm running version 2.6 and need to renew my membership with them to download the latest version. But right now, I need to create a query that removes all ads older than 90 days. The admin tool allows you to manually delete one at at time, but I have thousands. And many of them have no expiration date.
So basically, I need to run a query that checks the products table and deletes all ads that are 91 days old and older. Let me know if you need the table names or anything else. Thanks guys. --------------- Added [DATE]1233869618[/DATE] at [TIME]1233869618[/TIME] --------------- Am I way off with this query: Code:
list($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(); $mon = $mon + 1; $year = $year + 1900; $today = mktime($hour,$min,$sec,$mon,$mday,$year); $hour = $hour + ($Globals['numdays'] * 24); $deleteads = $today - 90; $query = "DELETE FROM {$Globals['pp_db_prefix']}products WHERE date = $deleteads AND isauction=0"; $result = ppmysql_query($query,$link); |
#2
|
|||
|
|||
![]()
If you have questions/problems with a modification or style, then please post in the thread (or support forum/board) about that modification/style. Best chance to receive a reply from either the author or another member using the same modification/style.
|
#3
|
|||
|
|||
![]()
I'm sorry, I thought this was more of a "general programming" forum. I'm just asking about how to write a query. From the other threads I've seen in this forum I'm not sure how this would not be a good forum to ask this question in.
|
#4
|
||||
|
||||
![]() PHP Code:
|
#5
|
|||
|
|||
![]()
I think that's what I'm looking for. Thanks!
|
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|