Jump to content

PLEASE HELP! Form returning EVERYTHING BUT..


ShadowIce

Recommended Posts

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) {

 

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....

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?

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.