schilly Posted January 21, 2010 Share Posted January 21, 2010 sorry if it's confusing. I'm just trying to see what's actually in the array, and not what you're echoing. it looks like that one output shows hasadiscount as false. Quote Link to comment Share on other sites More sharing options...
ShadowIce Posted January 22, 2010 Author Share Posted January 22, 2010 no offense, but i could have told u that.. so what I MYSELF want to know, is WHY it is returning false EVEN when it should return true? Quote Link to comment Share on other sites More sharing options...
schilly Posted January 22, 2010 Share Posted January 22, 2010 sorry but none of your other output showed it as false. if(($key = array_search($myCoupon, $coupons)) !== false) { $hasdiscount = true; // delete the coupon from the array using $key unset($coupons[$key]); file_put_contents('Vm1wS01HRXhVWGxWYmxKV1lrZG9VRlpyVmt0WGJGSllZM3BHVG1KSFVubFhhMXByWWtkR05sSnJXbFpXYldoeVZrZDRWMDVzV2xsYVIwWlhWakpvVkZaVldrWlBWa0pTVUZRd1BRPT0=.txt', implode("\r\n", $coupons)); } else if(($key = array_search($myCoupon, $coupons)) == false) { $hasdiscount = false; } put some echos in where ever $hasdiscount get's changed so you know when it changes or if it even gets into those if statements. if(($key = array_search($myCoupon, $coupons)) !== false) { i'm not sure if != vs !== will make a difference but I never use !== if(($key = array_search($myCoupon, $coupons)) != false) { Quote Link to comment Share on other sites More sharing options...
Andy-H Posted January 22, 2010 Share Posted January 22, 2010 You know; if you tried to do a little troubleshooting before posting, and didn't have to post 10000 lines of code people might actually help you, myself, I CBA to read that if you CBA to troubleshoot to reduce the amount of code you need to post to resolve the problem beforehand.... Quote Link to comment Share on other sites More sharing options...
ShadowIce Posted January 22, 2010 Author Share Posted January 22, 2010 "You know", I already tried that. -.- and ur not helping, Andy Quote Link to comment Share on other sites More sharing options...
ShadowIce Posted January 22, 2010 Author Share Posted January 22, 2010 *sigh* anyone else? ive looked through all the files and im still having this problem..... :/ Quote Link to comment Share on other sites More sharing options...
schilly Posted January 22, 2010 Share Posted January 22, 2010 if(($key = array_search($myCoupon, $coupons)) !== false) { $hasdiscount = true; // delete the coupon from the array using $key unset($coupons[$key]); file_put_contents('Vm1wS01HRXhVWGxWYmxKV1lrZG9VRlpyVmt0WGJGSllZM3BHVG1KSFVubFhhMXByWWtkR05sSnJXbFpXYldoeVZrZDRWMDVzV2xsYVIwWlhWakpvVkZaVldrWlBWa0pTVUZRd1BRPT0=.txt', implode("\r\n", $coupons)); } so does it even get in here? Quote Link to comment 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.