Yes your right ... realizing it ... the config file is a class I use
to connect to my Database .... I want to store this config on myt
hosting and then I can link to it and use it at my office, or at my PC
at home....

But I now realize including the php ...will just return a blank page
.... so its not like doing a include(/config.php) when its local ....

Anyway to do this ?



2009/11/3 Devendra Jadhav <devendra...@gmail.com>:
> You are including file from external server and you are accessing it via
> HTTP protocol. So it will include the output of
> http://200.200.1.1/Folder/Config.php and the output of that script is
> nothing.
>
> If you want to see the output just put http://200.200.1.1/Folder/Config.php
> in browser and check.
>
> btw what exactly you want to achieve by including external config file?
>
> On Tue, Nov 3, 2009 at 2:05 PM, Anton Heuschen <anto...@gmail.com> wrote:
>>
>> Question is wrt to including a config file on an external server in a
>> local include
>>
>> Lets say that on 127.0.0.1 I have test.php with
>>
>> include http://200.200.1.1/Folder/Config.php
>>
>> $obj = new RemoteClass()
>>
>> do stuff
>>
>>
>> and on server 200.200.1.1 I have my Config.php file which is contains
>> the class RemoteClass() { echo "test" }
>>
>>
>>
>> If I try to test it locally it says it cannot find RemoteClass ...
>>
>>
>> How can I include/require a config (or any other php classes file) on
>> my local running php script ?
>>
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>
>
>
> --
> Devendra Jadhav
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to