I am learning PHP and I am testing that when including file it works with or without the ; symbol but my question is:
Which one is the correct way of the following two working options?
(with or without the ending 😉
<?php include('/folder/file.php')?>
or
<?php include('/folder/file.php');?>
What problems could exist if using one but no the other?