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

 

Link to comment
Share on other sites

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
Share on other sites

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