ovi.ro

ovi.ro

Tag: syntax

Syntax

PHP tagsPHP code must be put between some special characters<?php ?><? ?> // with short_open_tag enabled or php with option --enable-short-tags<script language="php"> </script> // old style<% %> // ASP style asp_tags enabledOther formats<?php echo 'message'; ?> // this are equivalents<?= 'message'; ?> // if short_open_tag … Read more »