I'm new to PHP and am curios if there is any functional difference between a "print" and an "echo".
I'm new to PHP and am curios if there is any functional difference between a "print" and an "echo".
Hi Miguel,
they're very simmilar. But echo is not a function, it's a language construct. It does not give you a return value. print() does. echo accepts several arguments. print() one.
Ulf