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. Link to comment https://forums.phpfreaks.com/topic/189191-please-help-form-returning-everything-but/page/2/#findComment-999660 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? Link to comment https://forums.phpfreaks.com/topic/189191-please-help-form-returning-everything-but/page/2/#findComment-999662 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) { Link to comment https://forums.phpfreaks.com/topic/189191-please-help-form-returning-everything-but/page/2/#findComment-999686 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.... Link to comment https://forums.phpfreaks.com/topic/189191-please-help-form-returning-everything-but/page/2/#findComment-999689 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 Link to comment https://forums.phpfreaks.com/topic/189191-please-help-form-returning-everything-but/page/2/#findComment-999802 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..... :/ Link to comment https://forums.phpfreaks.com/topic/189191-please-help-form-returning-everything-but/page/2/#findComment-999813 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? Link to comment https://forums.phpfreaks.com/topic/189191-please-help-form-returning-everything-but/page/2/#findComment-999995 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.