Voting

: four minus zero?
(Example: nine)

The Note You're Voting On

abhijeet dot sweden at gmail dot com
2 years ago
Type#1:

<?php

require_once('Second.php');
require_once(
'First.php');

$Second = new Second;
$Second->run_second();

$First = new First;
$First->run_first();

?>

---------------------------------------------------------
Type#2:

<?php

spl_autoload_register
(function($class){
//
require_once($class.'.php');
});

$Second = new Second;
$Second->run_second();

$First = new First;
$First->run_first();

?>

<< Back to user notes page

To Top