Take a look at
http://www.php.net/manual/en/language.basic-syntax.php.

Regarding the use of <?= and <%=...
Basically, they're a shorthand version for <? echo
'something' ?>. (The <?= equivelent would be <?= 'something'
?>.)

The use of <%= is discouraged (as is <%) because it was only
added to make things easier for ASP devels and people
working in FrontPage.

The use of <?= at all has been debated; check the archives
if you're interested... it's an undying debate ;)

--Toby

----- Original Message -----
From: "mOrP" <[EMAIL PROTECTED]>

> Can someone point me to the documentation of '<?=' and
'<%=', 'cause I don't
> know what it does.

> > -----Original Message-----
> > From: Arcady Genkin [mailto:[EMAIL PROTECTED]]

> > I have noticed that <?= works just as well as <%=.
Since this is not
> > in documentation, how safe is it to use it?

> > Arcady Genkin



-- 
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]

Reply via email to