Friday, September 5, 2014

What is PHP ?

PHP (recursive acronym for Hypetext Preprocessor) developed by Rasmus Lerdorf  in 1995.It is aServer-side scripting-language, and runs on server.It is used to manage dynamic content, databases, session tracking, even build entire e-commerce sites and is integrated with a number of popular databases, including MySQL, PostgreSQL, Oracle, Sybase, Informix, and Microsoft SQL Server. PHP widely used as open source general purpose scripting language and it can be easily embedded with Html.You can write the php code in the html page and embed with html elements.PHPcode specially enclosed with opening  <?php  and closing  ?> tag.We should always write php codes in between php opening and closing tag otherwise the code will not run/work.
Read more:
Best thing about PHP are it is extremely simple for newcomer and offers many advanced feature for the professional programmer/developer.
Example of  a PHP script :

<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php
echo "Hello, Welcome to PHP Programming!"
?>
</body>
</html>
     Output :
first-script

Saturday, August 23, 2014

Learn CSS Step By Step

Cascading Style Sheet:
What CSS does?
CSS allows you to create rule’s that specify how the content of an element should appear.For example, you can specify that the background of the page is white, all paragraphs should appear in gray using the Arial typeface, or that all level one headings should be in a blue, italic, Times typeface.

Thursday, April 10, 2014

How to Download jQuery file and use it inside the HTML document?

Steps to Download jQuery file.

  • First of all you will go to jQuery officicial website ie. jQuery.com.




JQuery

jQuery
What is jQuery?

  • jQuery is a lightweight, "write less, do more", JavaScript library.
  • jQuery is a JavaScript library providing predefined JavaScript logics.
  • It is available with different extentions. 
  • Which was released in 2006.
  • It is free of cost open source library, if u want to use jQuery on your website you don't have to pay single penny.
  • We can call JavaScript functions by embedding this file within current application.