PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<?php
// Include file
include("/file.inc");
// Create new object
$current = new file;
// Perform a function
$current->someFunction();
// After this, file.inc is not needed anymore.
// Can it be closed so it cannot be accessed again (unless it is included again somewhere further down of course)
?>