Is this ok to do in an is?

is this

<?php if (isset($_POST['First_Name'],$_POST['Last_Name'])){  ?>

The same as

<?php if (isset($_POST['First_Name']) && isset($_POST['Last_Name'])){ ?>

Thanks./…

According to the manual entry for isset(), yes.

A post was split to a new topic: Display English under headings when language is set to English

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.