Posted by Gunnar G on 02/06/07 08:01
> You can use classes :
> <?php
> class a
> {
> include "a.php";
> }
> class b
> {
> include "b.php";
> }
>
> a::foo();
> b::foo();
> ?>
>
> http://www.mastervb.net/phpbooks/
> http://www.mastervb.net
Thanks, that was the best answer yet. I will try that. So in a sence, there
are namespaces, if you use classes. Great! :-)
[Back to original message]
|