Echo, multiple parts in one call:
123456789
<?php echo "123", "456", "789"; ?>
Multiple 'echo' instructions:
123456789
<?php echo "123"; echo "456"; echo "789"; ?>
Print, concatenating the items together in one call:
123456789
<?php
print("123" . "456" . "789");
?>
Multiple 'print' instructions:
123456789
<?php
print("123");
print("456");
print("789");
?>