Jump to content

adding / subtracting values, preventing the field to roll over?


Lashiec

Recommended Posts

I've got a field (int) and I need to add/subtract numbers from it for a shopping cart quantity field. The thing is, I can update the column with add/subtracted values, but if the value is 4 and I subtract 5 from it, it rolls over to 16475715 (it's unsigned). Is there a way to produce an error so that if it goes below 0, or above the maximum number, it won't do the update and will send an error out?

 

Or... Should I just read the value out (4), do my math with PHP ($val = $val - 5), and then check if $val is within a reasonable range (0 to 16475715). I guess this way $val would become -1 and then error out since it's below 0 and all...

 

Any ideas?

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.