Monday 24 December 2012

JQuery mobile Basic part 1

           
                                 Hi friends this is Vishnu Sharma and this is the first article of the JQuery mobile.
    Before starting learning JQuery. it is better  first completed our basic of web designing web designing
 or development so, let start some basic concept of

1. HTML 5
2. CSS 3
3. JavaScript

4. AJAX
5. PHP
6. MySQL




What is HTML 5:-
                   HTML is now it is in version 5(not released yet).It is the basic building block of the Web. It is the frame that holds your site together and the foundation that allows you to extend your site into whatever you want it to be.







 HTML has come a long way from its inception and is continuing to grow and develop..
It consist of many tag. learn about tag..

What is CSS 3:-
                   Cascading Style Sheets (CSS) were introduced, everything was handled with HTML tags.

Images, text, layout, scrolling text, just about everything was put in place with HTML tags. You
may remember viewing the source code on your browser and seeing lots of   character
entities being used for layout purposes.






Cascading Style Sheets (CSS) were introduced, everything was handled with HTML tags.
Images, text, layout, scrolling text, just about everything was put in place with HTML tags. You
may remember viewing the source code on your browser and seeing lots of   character
entities being used for layout purposes.

What is JavaScript:-

                    JavaScript library plug-ins are a bit picky about the use of the Transitional and strict
DOCTYPE used on a site. if you are using a JavaScript library or plug-in that does not work the same
way for you as it does on a demo site, try changing your DOCTYPE and see whether it magically
starts working as intended.



Hello, World program



<!Doctype Html>
<head></head>
<body>
<script>
alert('HELLO,World!')
</script>
</body>
</html>


What is AJAX:-
                    AJAX = Asynchronous JavaScript and XML.AJAX is a technique for creating fast and dynamic web pages. AJAX allows web pages to be updated asynchronously by exchanging small amounts of data with the server behind the scenes. 





This means that it is possible to update parts of a web page, without reloading the whole page.Classic web pages, (which do not use AJAX) must reload the entire page if the content should change.Examples of applications using AJAX: Google Maps, Gmail, YouTube, and Facebook tabs (from w3 school)....





What is PHP:-
           PHP is a Hypertext Preprocessor is a widely used, general-purpose scripting language that was originally designed for web development. Php is a server side programming language used for The best things in using PHP are that it is extremely simple for a newcomer,







           but offers many advanced features for a professional programmer. Don't be afraid reading the long list of PHP's features. You can jump in, in a short time, and start writing simple scripts in a few hours.


<!DOCTYPE>
<html>
    <head>
        <title>First program</title>
    </head>
    <body>

        <?php
            
echo "HEllo,World!";
        
?>
    </body>
</html>



What is MySQL:-

             The official MySQL Workbench is a free integrated environment developed by MySQL AB, that enables users to graphically administer MySQL databases and visually design database structures. MySQL Workbench replaces the previous package of software, MySQL GUI Tools. Similar to other third-party packages, but still considered the authoritative MySQL frontend, MySQL Workbench lets users manage database design & modeling, SQL development (replacing MySQL Query Browser) and Database administration (replacing MySQL Administrator).





MySQL Workbench is available in two editions, the regular free and open source Community Edition which may be downloaded from the MySQL website, and the proprietary Standard Edition which extends and improves the feature set of the Community Edition.

it is better to now 


0 comments:

Post a Comment