Get up to 80 % extra points for free! More info:

home.php

main page where the instantiation and method call occurs

php

<?php
	//autoloader
	function autoloadFunction($class)
	{
		require('classes/' . $class . '.php');
	}
	//set up autoloader
	spl_autoload_register('autoloadFunction');
	
	$collage = new albumContainer;
	$collage::render();
?>

Raw

Added: 3/29/2018
Expires: Undefined

Activities