Jump to content

Scanning and modifying mysql database problem


WeBBy421

Recommended Posts

This has been driving me crazy all day. Out of hair to pull out so hoping for some help.

 

Trying to go through a database, selecting expired memberships, and setting those expired from active = 'Y' to active = 'n'.

 

The script goes through the database fine, but when it encounters an expired member and updates active to 'n', it then goes into error trying to re-enter the cycle (continuing to scan database) and dies.

 

//Check all active members
$db = mysql_connect("localhost","xxxx","xxxx");
mysql_select_db("paratb_members",$db);
$result = mysql_query("SELECT * FROM temporary WHERE active = 'y' AND exempt = 'n'",$db);
while ($row = mysql_fetch_array($result)) {
extract($row);
//some variables
$todaydate = $_SERVER['REQUEST_TIME']; //current timestamp
$almostdue = strtotime("-3 months", $expiredate); //months to start warning
$whendue = date('F d, Y',$expiredate);
if ($expiredate < $todaydate ){
//Change Member STATUS
mysql_select_db("paratb_members",$db);
$query = "update temporary SET active = 'n' WHERE id = '$id'";
$result = mysql_query($query,$db) or die ("Error: (" . mysql_errno() . ") " . mysql_error());;
echo "User id: $id - DUES PAST DUE ON $whendue<br>";
}
echo "Userid:$id - Members Status OK<br>";
}
echo "DONE";

 

I get the following Error message (after changing database):

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /home/xxxx/public_html/tmp.php on line 7

 

line 7 is the original query:

 while ($row = mysql_fetch_array($result)) { 

 

Any idea as to why it is going into fatal error after making the db change?

 

Any help would be greatly appreciated. Thanx

Link to comment
Share on other sites

First things first. You are using obsolete Mysql code that will not work at all in the current version of Php. You need to use PDO with parameterized queries.

 

Second, the whole thing can be done in ONE sql statement.

 

Third, your active and exempt columns should be tinyint with a lenth of 1 and use the values 1  or 0 for yes/no

 

Fourth, why are you re-selecting your database. 

Edited by benanamen
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.