hi,
didn't know where to paste this question...
anyway, i've got a class from the class repository, and being new to php, this is the first time i've tried to include a file. Problem is, it won't include!! I've checked my php.ini file for the include_path and then placed the class in one of the folders (first of all i tried just htdocs, then all of them) and tried to include it. I got this message:
Warning: Failed opening 'thisclass.class.' for inclusion (include_path='.; \apache\includes\;\apache\htdocs\;\apache\htdocs\phpmyadmin') in C:\apache\htdocs\testinginclusion.php on line 3
this happens even if i say
'include_once "\apache\htdocs\thisclass.class";'
or whether i say
'include_once (thisclass.class);'
In other words, wherever I place it, and whether i provide the full path or not, it still won't include. Can someone please help me?
----- Zak ------