Print Vs. echo. I recommend echo. Why?..well

Was trying to figure out which was best, since both essentially to the same thing. Managed to find a preformance test done by some other dude.

http://dynacker.dotgeek.org/printvsecho/

eh… good I always use echo :beer:

There is only one difference between the 2:

echo returns nothing.
print returns 1 (true) or 0 (false) if it successfully prints.

print has 5 character and echo 4 :slight_smile:

I always use echo, and it seems like a good thing to do, and thanks for the info marble, I always wanted to know, but why would you check to see if it printed? what would stop it?

edit: figured it out, a messed up variable of course