Walker33 Posted May 13, 2009 Share Posted May 13, 2009 Don't know what I'm doing wrong here, but if the the first of several entries in the db = true, it's fine. If it's the third or fourth in the array, doesn't work. Not sure where I'm missing in my while. <?php if ($result["r_approved"] == "APPROVED") // transaction processed successfully // check demo table to see if they have a demo license: { $query5 = mysql_query("SELECT License_Num FROM demo_details WHERE ((RFirstName like '%$FName1%' AND RLastName like '%$LName1%') OR (REmail = '$billing_email') OR (SFirstName like '%$FName1%' AND SLastName like '%$LName1%') OR (SEmail = '$billing_email')) AND Outcome like ''"); $num5 = mysql_fetch_assoc($query5); $license5 = $num5['License_Num']; //check trial license table to see that they're still in there $query6 = pg_query("SELECT license FROM triallics WHERE license = '$license5'"); $num6 = pg_fetch_assoc ($query6); //if they had a demo and still in trial lic table, set them to PRO and delete from trial lics $demo_user = false; while ($demo_user !== true) { if ($num5 > 0 && $num6 > 0) {$demo_user = true; //Updating license to PRO $proupdate = pg_query("UPDATE licences SET type = 'PRO' WHERE license like '$license5%' "); //Deleting from triallics table $demodelete = pg_query ("DELETE From triallics where license = '$license5' "); } } } ?> Really appreciate the help. Quote Link to comment https://forums.phpfreaks.com/topic/157971-while-loop/ Share on other sites More sharing options...
Ken2k7 Posted May 13, 2009 Share Posted May 13, 2009 if ($num5 > 0 && $num6 > 0) I don't understand that line. $num5 and $num6 are arrays. You're checking if an array is greater than 0? Quote Link to comment https://forums.phpfreaks.com/topic/157971-while-loop/#findComment-833256 Share on other sites More sharing options...
Walker33 Posted May 13, 2009 Author Share Posted May 13, 2009 yeah, I guess I am. I guess I don't understand, either, obviously. Should I be checking that license5 and creating a license6 on the pg_query to check? Quote Link to comment https://forums.phpfreaks.com/topic/157971-while-loop/#findComment-833258 Share on other sites More sharing options...
Ken2k7 Posted May 13, 2009 Share Posted May 13, 2009 I think you meant to check if the size of the array is greater than 0, not the array itself. Because the latter case is always true. Quote Link to comment https://forums.phpfreaks.com/topic/157971-while-loop/#findComment-833261 Share on other sites More sharing options...
Walker33 Posted May 13, 2009 Author Share Posted May 13, 2009 Okay...I think I'm all backwards and need to start fresh.... Quote Link to comment https://forums.phpfreaks.com/topic/157971-while-loop/#findComment-833263 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.