Recent content by xhtmljunkies123

  1. X

    Which is better, 4.4.4 KitKat or Lollipop 5.1.1?

    As per me, kitkat version is better than lollipop because it needs low RAM.
  2. X

    Best One: Android and iOS?

    I just hate iOS & I'm true lover of Android since last 5 years. Android is very easy to operate & multi functional. It is also user friendly & not complicated like iOS so simply Android is the best OS.
  3. X

    Which Linux version would you suggest?

    As per my opinion following are the best versions of linux: Ubuntu Debian Mageia
  4. X

    Best site to learn Programming?

    Following are the sites from where you can learn programming. For jQuery - http://www.w3schools.com/jquery/ For PHP - http://www.w3schools.com/php/
  5. X

    Creating an SMTP server

    IIS SMTP Server Setup Step 1 Open up the Control Panel and click "Programs," or "Programs and Features" if you're in the Classic view. Step 2 Click "Turn Windows Features On or Off," which is located in the left pane if you're in Classic view. Click "Allow" if you get any security warnings...
  6. X

    How to find out difference betwwen dates in php

    Using the identical (===) comparision operator in different but equal objects will return false <?php $c = new DateTime( '2014-04-20' ); $d = new DateTime( '2014-04-20' ); var_dump( $d === $d ); #true var_dump( $d === $c ); #false var_dump( $d == $c ); #true ?>
  7. X

    Best site to learn Programming?

    for java www.javatpoint.com/ for php www.w3school.com/