Re: [PHP] Echo and Print

2001-01-26 Thread Philip Olson
> print is a function where u can add html tags like > print(" hello $name") however echo is a command where we can't > include html tags ! echo "hello".$name This is VERY incorrect, please read this : > >What is the difference between echo and print ? > >---

RE: [PHP] Echo and Print

2001-01-26 Thread John Guynn
EMAIL PROTECTED]] Sent: Friday, January 26, 2001 12:37 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Echo and Print print is a function where u can add html tags like print(" hello $name") however echo is a command where we can't include html tags ! echo "hello".$name --

Re: [PHP] Echo and Print

2001-01-26 Thread kaab kaoutar
print is a function where u can add html tags like print(" hello $name") however echo is a command where we can't include html tags ! echo "hello".$name >From: Philip Olson <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >CC: [EMAIL PROTECTED] >Subject:

Re: [PHP] Echo and Print

2001-01-26 Thread Philip Olson
What is the difference between echo and print ? --- http://www.faqts.com/knowledge_base/view.phtml/aid/1/fid/41 Philip On 26 xxx -1 [EMAIL PROTECTED] wrote: > I know it is a kind of stupid question but I was trying to figure

RE: [PHP] Echo and Print

2001-01-26 Thread SED
Hi, I cut & paste this from an earlier e-mail from this list, hope it helps: - The print() function returns a boolean indicating the status of the call. If the write was successful, print() returns 1. If not, it returns

RE: [PHP] Echo and Print

2001-01-26 Thread Nathan Cassano
As I understand it, echo is somewhat of an language construct and print is a function. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, January 26, 2001 11:37 AM To: [EMAIL PROTECTED] Subject: [PHP] Echo and Print I know it is a kind of stupid questio