On Wed, 15 May 2002, Jason Wong wrote:
> That's exactly what you need :) Have some core functions that are remotely 
> accessed.
> 
> for example:
> 
> $result = file("http://www.myserver.com/functions/square_root.php?input=4";);
> 
> Then at www.myserver.com the square_root.php file would contain:
> <?
>   echo sqrt($input);
> ?>
> 
> Does anyone see any flaws in this?

1) Really slow.

2) Seems like a lot of work to basically accomplish the same thing as just
hosting it on your own server until you get paid.

miguel



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

Reply via email to