Recent content by alfainhost

  1. A

    Security Code on Facebook

    What is Code Generator? How does it work? Code Generator is part of an extra security feature called login approvals. If you turn on login approvals, you'll be asked for a unique security code each time you try to log into your Facebook account from a new computer or mobile phone. That way...
  2. A

    Please Review my site

    You website look good. I think you done very good job carry-on.
  3. A

    what software is used for designing?

    Notepad++ Adobe Dreamweaver Adobe Photoshop
  4. A

    Text Editor Tools

    I am personally using Dreamweaver. I think its a best tool for web development.
  5. A

    who is developed the Java

    James Gosling is founder of java programming language.
  6. A

    Floating Point Number in PHP

    Floating point numbers have limited precision. Although it depends on the system, PHP typically uses the IEEE 754 double precision format, which will give a maximum relative error due to rounding in the order of 1.11e-16. Non elementary arithmetic operations may give larger errors, and, of...
  7. A

    MySQL Query Not Working

    Try this: <?php $con=mysqli_connect("localhost","my_user","my_password","my_db"); // Check connection if (mysqli_connect_errno()) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); }...
  8. A

    why use the echo in php?

    echo statement used for display any information.
  9. A

    What is the purpose of HTML

    HTML = hyper text mark-up language:: the language your computer speaks with an internet browser to create arguments and display data
  10. A

    how to HTML code run?

    Go w3schools.com
Back
Top