I can't seem to get PHP to recognize and use the classes that I have installed. My current code is:
<?php
Include(include_path='class.FastTemplate.php');
$tpl = new FastTemplate("Templates");
?>
and I get a Parse Error on line 2 when I run it. When the code is like this:
<?php
Include ($class.FastTemplate.php);
$tpl = new FastTemplate("Templates");
?>
I get this error:
Warning: Failed opening 'FastTemplatephp' for inclusion (include_path='') in /www/users/hamled/index3.php on line 2
Fatal error: Cannot instantiate non-existent class: fasttemplate in /www/users/hamled/index3.php on line 3
Can someone tell me what I'm doing wrong?
Charles "Hamled" Ellis