Question:Which is correct way to embedding PHP tag into webpage delimiter syntax? 

A 

Welcome !

<?php echo "

some dynamic output here

"; ?> Some static output here
 

B 

Welcome !

<? echo "

some dynamic output here

"; ?>

Some static output here

 

C 

Welcome !

<% echo "

some dynamic output here

"; %>

Some static output here

 

D 
<?php 

Welcome !

echo "

some dynamic output here

";

Some static output here

?>
 

+ Answer
+ Report
Total Preview: 336

Copyright © 2024. Powered by Intellect Software Ltd