Jeniveve Posted April 28, 2011 Share Posted April 28, 2011 I asked this once b4 and the answer seemed to work but now the discount is being caclulated again...I wanted the discount to stop after April 15...The below code doesn't work, can someone help??? } if(date("j") < 14) { $before = $cost*.05; $before = round($before,2); $cost = $cost-$before; } Thank you in advance for ANY help that can be provided. Jennifer Link to comment https://forums.phpfreaks.com/topic/234987-please-assist-with-provide-discount-before-certain-date-only/ Share on other sites More sharing options...
mellis95 Posted April 28, 2011 Share Posted April 28, 2011 I just plugged this into a script and it calculates full cost. Today date("j") is '28', so I don't see why you should have any issue with that script today. Based on the code you provided the discount would start again on May 1. What do you get if you echo date("j") from your server? Could the date on the server be incorrect?? Link to comment https://forums.phpfreaks.com/topic/234987-please-assist-with-provide-discount-before-certain-date-only/#findComment-1207637 Share on other sites More sharing options...
JKG Posted April 28, 2011 Share Posted April 28, 2011 $cost is defined previously yeah? Link to comment https://forums.phpfreaks.com/topic/234987-please-assist-with-provide-discount-before-certain-date-only/#findComment-1207641 Share on other sites More sharing options...
Jeniveve Posted April 28, 2011 Author Share Posted April 28, 2011 I get the number 28..... Link to comment https://forums.phpfreaks.com/topic/234987-please-assist-with-provide-discount-before-certain-date-only/#findComment-1207660 Share on other sites More sharing options...
mellis95 Posted April 28, 2011 Share Posted April 28, 2011 28 is correct. I think we need to see the rest of the script to track down what is going on. The piece you posted is working correctly. Link to comment https://forums.phpfreaks.com/topic/234987-please-assist-with-provide-discount-before-certain-date-only/#findComment-1207663 Share on other sites More sharing options...
Jeniveve Posted April 28, 2011 Author Share Posted April 28, 2011 would you mind if I only sent it to you so I don't advertise it all over the site, I don't know if that is OK or not, I am NOT a regular user, can I post the entire file here in public? Link to comment https://forums.phpfreaks.com/topic/234987-please-assist-with-provide-discount-before-certain-date-only/#findComment-1207669 Share on other sites More sharing options...
Jeniveve Posted April 28, 2011 Author Share Posted April 28, 2011 Thank you again. Link to comment https://forums.phpfreaks.com/topic/234987-please-assist-with-provide-discount-before-certain-date-only/#findComment-1207671 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.