I am trying to use a class that I wrote to use on another page (to use the functions and what not). In the class I have the constructor like this:
<?php
class myClass{
function __constructor(){
//stuff here
}
}
?>
And in my other file, where I am trying to use this class I have:
<?php
$obj = new myClass();
?>
And it tells me that the class was not found.
I don't know what to do?
Any help would be great, thanks.