Question:Which is correct in CodeIgniter about closing tag? 

A 
<?php
class Helloworld extends Controller{
 function index(){
  echo("Hello, World!");
 }
}
?>
 

B 
<?php
class Helloworld extends Controller{
 function index(){
  echo("Hello, World!");
 }
}
/* End of file helloworld.php */
/* Location: system/application/controllers/ */
 

C 
<?php
class Helloworld extends Controller{
  function index(){
    echo("Hello, World!");
  }
}
/* End of file helloworld.php */
/* Location: system/application/controllers/ */
?>
 

D None 

+ Answer
+ Report
Total Preview: 785

Copyright © 2024. Powered by Intellect Software Ltd