-3
<?php
print();#The Print Statement
echo();#The Echo Statement
?>

I Would Be Very Thankful If Someone Answered My Question...

1 Answers1

1

print returns a value (always 1); echo returns nothing

echo will accept multiple arguments, print only accepts one argument

Mark Baker
  • 205,174
  • 31
  • 336
  • 380