Re: [PHP] html -echo-print

2001-02-07 Thread Christopher Allen
JB, yes I do know that, but thanks :) I was looking for: print << of course it was on : http://www.php.net/manual/en/function.print.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact t

Re: [PHP] html -echo-print

2001-02-07 Thread JB
Oien <[EMAIL PROTECTED]> To: php <[EMAIL PROTECTED]> Sent: Wednesday, February 07, 2001 10:48 AM Subject: RE: [PHP] html -echo-print > On that subject what's the difference between echo > and print? > Jeff Oien > > -- > PHP General Mailing List (http://www.php.net

RE: [PHP] html -echo-print

2001-02-07 Thread Philip Olson
See this : What is the difference between echo and print ? --- http://www.faqts.com/knowledge_base/view.phtml/aid/1/fid/41 It should help! Regards, Philip On Wed, 7 Feb 2001, Jeff Oien wrote: > On that subject wh

RE: [PHP] html -echo-print

2001-02-07 Thread Jeff Oien
On that subject what's the difference between echo and print? Jeff Oien -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] html -echo-print

2001-02-07 Thread Philip Olson
Here are a few examples of what you _can_ do : '; print ""; print ''; print ""; print ""; ?> "> For a wonderful tutorial on the subject, go here : http://www.zend.com/zend/tut/using-strings.php It's quite nice. Regards, Philip Olson http://www.cornado.com/ O

Re: [PHP] html -echo-print

2001-02-07 Thread JB
Uhmm well, you don't have to use print to display HTML. If you did there would be no reason for the tags. switches between HTML (which is not parsed by the interpreter and PHP code (which is interpreted). Basically, print is used when you have to print a variable. For instance name.php My