PHP/echo or print

From S23Wiki


<?php
echo "foobar";
print ("foobar");
?>

In PHP, should i use echo or print?

Personal tools