I have some code that I was given; there is a $_POST variable (email) that shows as having content, yet when I test for it using isset, it fails. I don\'t understand w
Take out the !. That should fix it: if you enter a valid email you are negating true (which becomes false).
!
Keep in mind that when you use isset() it returns a boolean (true or false)
isset()