Jump to content

what is the meaning of the symbol in php


milan

Recommended Posts

If any where in PHP Code a syntax looks like this i.e <?= "<any word>" ?> what does it mean.....?
<? ?> is just a short hand of writing <?php ?> if thats what your trying to find out
Link to comment
Share on other sites

maybe you should read the tutorials firsthttp://www.w3schools...php/default.asp it would explain that those symbols tell the interpreter to start executing any code within the start and end markers however, your code doesn't really do anything. if you were trying to output something to screen, you would actually need to write PHP code that did that. i.e.

<?phpecho 'america';?>

Edited by thescientist
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...