-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
  • 209,507
  • 32
  • 346
  • 385