Valhalla Legends Archive

Programming => Web Development => Topic started by: Imperceptus on September 04, 2007, 01:52 PM

Title: [php] echo & print
Post by: Imperceptus on September 04, 2007, 01:52 PM
What is the difference between Echo and Print?
Title: Re: [php] echo & print
Post by: Barabajagal on September 04, 2007, 01:55 PM
http://www.php.net/print
http://www.php.net/echo
Can you tell now?

If not.. http://www.faqts.com/knowledge_base/view.phtml/aid/1/fid/40
Title: Re: [php] echo & print
Post by: Imperceptus on September 04, 2007, 02:02 PM
ah, so echo is slightly faster just because it has no return value? Thanks for help.
Title: Re: [php] echo & print
Post by: Barabajagal on September 04, 2007, 02:07 PM
Yep.
Title: Re: [php] echo & print
Post by: Imperceptus on September 04, 2007, 02:33 PM
thanks