Skip to content

Instantly share code, notes, and snippets.

@nurullahisik
Created February 13, 2019 06:51
Show Gist options
  • Save nurullahisik/983ee14e9afce948946bd80e6af3c7a8 to your computer and use it in GitHub Desktop.
Save nurullahisik/983ee14e9afce948946bd80e6af3c7a8 to your computer and use it in GitHub Desktop.
Storing data on a remote server
<?php
$dosya = fopen ("ftp://kullanici:[email protected]_bir_site.com/gelen/yazilan_dosya", "w");
if (!$dosya) {
echo "<p>Uzak dosya yazmak için açılamıyor.\n";
exit;
}
/* Veriyi burada yaz. */
fwrite ($dosya, $_SERVER['HTTP_USER_AGENT'] . "\n");
fclose ($dosya);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment