I have a good script here for ftp transfers but there's an error somewhere's:
<?
// set up basic connection
$conn_id = ftp_connect("IP");
// login with username and password
$login_result = ftp_login($conn_id, "user", "pass");
?>
when I call this include file i get:
Fatal error: Call to undefined function: ftp_connect()
this comes from the php3.org site and it says it should work, but I've got error's happening.