Question: What is the right path to open config.php file?
A
B
C
D
controller/config/config.php
B
application/config/config.php
C
view/config/config.php
D
application/libraries/config.php
Note: Not available
<?php
class Helloworld extends Controller
{
  function HelloWorld(){
    parent::controller();
  }
  function index(){
   echo("Hello, World!");
  }
}
?><?php
class Helloworld extends Controller
{
   function HelloWorld(){
     parent:Controller();
   }
   function index(){
    echo("Hello, World!");
  }
}
?><?php
class Helloworld extend Controller
{
  function HelloWorld(){
   parent::Controller();
 }
 function index(){
  echo("Hello, World!");
 }
}
?><?php
class Mymodel extends model{
 function Mymodel(){
  parent::Model();
 }
}
?><?php
class Mymodel extend Model{
  function Mymodel(){
    parent::Model();
  }
}
?><?php
class Mymodel extends Model{
 funtcion Mymodel(){
   parent:Model();
 }
}
?><?php
class Mymodel extends Model{
 function Mymodel(){
  parent::Model();
 }
}
?>