I am trying to understand this syntax <?=$value;?> in php, For example:
<input type="text" name="user" value="<?=$_POST["user"];?>" id="user">
As i understand it is not some xml syntax becouse the file has to be .php file, Also the:
<? ?> // short opening tags in the <?=$_POST["user"];?> syntax
Is working even if i set short_open_tag = Off, If anyone can please help me understand this syntax and how doe's it working with the short_open_tag = Off, Thank you all and have a nice day.
short_open_tagis depreciated..please dont use that<? echo $_POST["user"]; ?>