Sven built a PHP-based website on contract then handed it off to his customer, Bob.

“You won’t be getting a lot of support calls from me,” Bob said, “because I actually know a thing or two about PHP. I’ll be maintaining this myself.”

Sven smiled, nodded, and moved on to the next contract. Months later, Bob sent him an email. “Hey, sometimes, the submit button isn’t available, and I’d like the submit button to appear all the time, but I can’t figure it out.”

Sven was busy, didn’t reply right away, and wasn’t terribly surprised when his customer pinged him back: “Nevermind, I got it.”

Eventually, though, Bob did find a problem he wasn’t confident enough to solve himself. When Sven had handed it off, the logic to show the submit button looked like this:

<?php if($can_submit) : ?>
        <button>Submit</button>
<?php endif; ?>

Bob’s revisions to make it so that the submit button always appeared?

<?php if(!isset($a3)) : ?>
        <button>Submit</button>
<?php ; ?>
<?php else : ?>
        <button>Submit</button>
<?php endif; ?>
[Advertisement] BuildMaster allows you to create a self-service release management platform that allows different teams to manage their applications. Explore how!