OK, on a form, I'm checking three text-boxes to make sure ALL have (numerical) entries, or NONE have entries. If only one or two boxes have entries, I want to prompt the page viewer that he has made an incomplete data entry. If none of the three have entries, then nothing should happen.
Here's my PHP code.
This does NOT catch incomplete entries for "csize1".
Can someone please help me out?
Here's my PHP code.
| Code: |
| IF (isset($csizeqty1) || isset($csizeh1) || isset($csizew1))
{IF (!isset($csizeqty1) || !isset($csizeh1) || !isset($csizew1)) {echo "Custom size 1 input is incomplete"; }} |
This does NOT catch incomplete entries for "csize1".
Can someone please help me out?
