Both echo
and print
are used to output data to the screen.
1 2 3 4 5 |
<?php echo "Hello, World!"; print "Hello, World!"; ?> |
Both echo
and print
are used to output data to the screen.
1 2 3 4 5 |
<?php echo "Hello, World!"; print "Hello, World!"; ?> |