Login
Remember
Register
Ask a Question
What is the correct and the most two common way to start and finish a PHP block of code?
0
votes
asked
Jun 22, 2019
in
PHP
by
SakshiSharma
What is the correct and the most two common way to start and finish a PHP block of code?
#php
#php-php
#php-server-monitor-script
#php-support
#mysql-php
#php-programmer
#php-development
#php-language
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 22, 2019
by
john ganales
The two most common ways to start and finish a PHP script are:
<?php [ --- PHP code---- ] ?> and <? [--- PHP code ---] ?>
...