Posted by J.O. Aho on 12/29/05 10:59
Camile wrote:
> So my PHP script Can't be on my web server and accomplish this? Yet, I can
> view the result variable in my browser window with it on the server.
You can use a remote file, _but_ it will be possessed by the remote servers
PHP which makes it to not able to server the values.
--- how the script looks like ---
<?PHP
$myvariable="Test text";
?>
--- eof ---
--- how the file will look like when included remotely ---
--- eof ---
As you see, you wouldn't have any data in the file after the PHP on the remote
machine has done it's.
//Aho
[Back to original message]
|