Hi,
I tried to run the follow code....
<?php
$id=ftp_connect($server);
ftp_login($id, $user, $password);
$files=ftp_rawlist($id, "");
foreach($files as $file) {
echo substr($file,55)."<br>\n";
}
ftp_quit($id);
?>
But....
My server gives.....
"Fatal error: Call to undefined function: ftp_connect() in /home/arijit/public_html/dir.php on line 6"
Am I missing something???
Plzz guide.....
Regards
Arijit