Styles2304 Posted August 16, 2007 Share Posted August 16, 2007 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. Quote Link to comment https://forums.phpfreaks.com/topic/65322-solved-no-errors-but-doesnt-work/ Share on other sites More sharing options...
marcus Posted August 16, 2007 Share Posted August 16, 2007 Is the database selected? Quote Link to comment https://forums.phpfreaks.com/topic/65322-solved-no-errors-but-doesnt-work/#findComment-326229 Share on other sites More sharing options...
Styles2304 Posted August 16, 2007 Author Share Posted August 16, 2007 yes, everything as far connecting to the database and all that crap is good. If I had a select statement in the query and echo'd something, it would work just fine. Quote Link to comment https://forums.phpfreaks.com/topic/65322-solved-no-errors-but-doesnt-work/#findComment-326239 Share on other sites More sharing options...
Styles2304 Posted August 17, 2007 Author Share Posted August 17, 2007 Ok, just thought I would include this so as to clerify a little maybe? Here is the conn.inc.php: <?php $link = mysql_connect("localhost","username","password") or die(mysql_error()); mysql_select_db("styles_controlpanel") or die(mysql_error()); ?> Quote Link to comment https://forums.phpfreaks.com/topic/65322-solved-no-errors-but-doesnt-work/#findComment-326349 Share on other sites More sharing options...
Styles2304 Posted August 17, 2007 Author Share Posted August 17, 2007 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. Quote Link to comment https://forums.phpfreaks.com/topic/65322-solved-no-errors-but-doesnt-work/#findComment-326355 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.