質問なんですが、
<?php
$outputname="abc.xml";
header("Content-Type: text/xml");
header("Content-Disposition: attachment; filename=$outputname");
require('abc.php');
?>
と書いてabc.phpが作成したxmlファイルをダウンロードさせると
いうプログラムを書いたのですが、これをダウンロードではなく
他のサーバにアップロードさせるという事は可能ですか?
分かる方教えてください。