<?php

$ftp_server = "ftp.geocities.ws";
$ftp_username ="yogitaweb";
$ftp_password ="yogita@12345";

$connect_id= ftp_connect($ftp_server) or die("could not connect to @$ftpserver");

if(@ftp_login($connect_id,$ftp_username,$ftp_password))
{
	echo "connection eshtablish";
}
else
{
	echo "connection not eshtablish";
}
ftp_close($connect_id);





?>