Jump to content

PravinS

Members
  • Posts

    459
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by PravinS

  1. 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.

  2. 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

  3. 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"); 
    
  4. Try using this this headers

    $headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    $headers .= "From: \"ClairVision Network\" <\"admin@clairvision.net\">\r\n";
    
  5. According to XML you will get values like this

    $data = "http://www.mesquiteweather.net/xml/mesquite.xml";
    $xml = simplexml_load_file($data);
    $fname = $xml->fname;
    $lname = $xml->lname;
    $location = $xml->location;
    $report = $xml->report;
    $description = $xml->description;
    
×
×
  • 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.