Jump to content

PravinS

Members
  • Posts

    459
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by PravinS

  1. yes it can be done, try this functions

    function loadsite(e) 
    {
    	if (!e) e = window.event;
    	if (e.keyCode) 
    	{
    		if (e.keyCode == "27")
                    {
                        setTimeout('openurl()',10000);
                    }
    	}	
    }
    
    function openurl()
    {
            window.location.href = 'SITE_URL';
    }
    

    first function is to check key code and if key is ESC key, then after some time interval(10000 = 10 seconds) it will call openurl() function, which is given next function

     

    now write below given code at the end of the page, it will check the key event and will call the loadsite() function

    document.onkeydown = loadsite;	
    

    also you can check setTimout function reference here

    http://www.w3schools.com/jsref/met_win_settimeout.asp

     

     

    may this will help you

  2. You need to call slideit() after callnow() function where ever you want to use the slide show or else u can call slideit() function in callnow() function, then u don't need to call slideit() function after callnow() function.

     

    may this will help you.

  3. i think it will not work through phpmyadmin, you can use sqlyog (MySQL GUI Tools), download it from here https://www.webyog.com/

     

    now when you will execute multiple queries in sqlyog query editor, it will give you multiple result in different tabs below the editor, now you will need to export this result one by one in which ever format you want (i.e. csv,sql etc.)

     

    may this will help you

  4. first check ftp_connect, is connection working properly with given details

     

    replace this line

    $conn_id = ftp_connect($ftp_server);
    

    with and check the connection

    $conn_id = ftp_connect($ftp_server) or die("Couldn't connect to $ftp_server"); 
    
×
×
  • 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.