PDA

View Full Version : php


mbergan
11-27-2000, 04:28 AM
What is the difference between echo and print in php?

Ruttiger
01-05-2001, 05:53 AM
well, echo is a language construct, not a function. you can use parens, but only when printing one argument. for multiple arguments, you must not use parens.

i always stick with print for some reason