Jump to content

[SOLVED] No errors but doesn't work . . .


Styles2304

Recommended Posts

I'm just trying to clean out my announcement section based on how old the post is.

 

Here's the code:

<?php
include "conn.inc.php";

$query = "DELETE FROM Announcements WHERE (DAY(CURRENT_DATE)-DAY(EntryDate)) > 14;";

mysql_query($query, $link) or die(mysql_error());
?>

 

Everything entered in for $query is right because if I copy and paste it directly into php myadmin, it deletes the rows accordingly.

 

All the login info is stored in conn.inc.php and it works right, it's how I run all my other mysql functions. $link is the mysql_connect statement.

Link to comment
Share on other sites

o . . . k . . . dunno why this made a difference but I changed it to:

 

DELETE FROM Announcements WHERE (DAYOFYEAR(CURRENT_DATE) - DAYOFYEAR(EntryDate)) > 14;

 

and it works now . . . the other way I had it worked fine in phpMyAdmin, dunno why it wouldn't work in php.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.