Jump to content

PravinS

Members
  • Posts

    459
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by PravinS

  1. Please check this lines

    $connection_id = ftp_connect($ftp_server);
     
    $login_result = ftp_login($connection__id, $username, $password);
    

    variable name $connection_id in second line has tow under scores(__)

     

    also update this lines as 

    if ((!$connection_id) || (!$login_result)){
    	die ("No FTP-Conection established!<br>Connection with FTP-Server as user ".$username." not possible!");
    
  2. This will help you

    <?php
    	//For A - Z (Capital letters)
    	for($c=65;$c<=90;$c++)
    	{
    		echo '<a href="page.php?letter='.chr($c).'">'.chr($c).'</a>';
    	}
    	
    	//For a - z (Small letters)
    	for($c=97;$c<=122;$c++)
    	{
    		echo '<a href="page.php?letter='.chr($c).'">'.chr($c).'</a>';
    	}
    ?>
    
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.