PHP coding question?
- by tag
Does the following code below do the same thing and if so which one is better when coding? And is there a name for when PHP code is missing curly brackets?
The PHP code.
<?php if (isset($_POST['email'])) { echo $_POST['email']; }?>
<?php if (isset($_POST['email'])) echo $_POST['email'];?>