Web Design With PHP MySQL Database

Web Design With PHP MySQL Database : Web Design With PHP MySQL Database is something different but extra ordinary special. Most popular way and most cheapest easy way using php mysql database site. PHP is free interface, no need extra investment for it. On the other hand ASP.NET have some complexity, having license system yearly. So Web Design and development with php mysql database is best for all. Try it and learn how to make a site and develop it with php mysql interface. 

Learn PHP, HTML, Java, ASP.NET

Online can be good partner of you. It can a good carrier for you. You can earn money at online by learning PHP, Java, HTML or ASP.NET   These program can build your strong carrier. Web development and web design depend on these programs. So dont late start your work just now. Make a way of outsourcing, try for these program. You will be able to build a strong carrier... So best of luck.

Learning PHP



What is PHP?

    PHP is an acronym for Hypertext Preprocessor
    PHP is a widely-used, open source scripting language
    PHP scripts are executed on the server
    PHP costs nothing, it is free to download and use


What is a PHP File?

PHP files can contain text, HTML, CSS, JavaScript, and PHP code
PHP code are executed on the server, and the result is returned to the browser as plain   HTML   PHP files have extension ".php"


What Can PHP Do?

    PHP can generate dynamic page content
    PHP can create, open, read, write, and close files on the server
    PHP can collect form data
    PHP can send and receive cookies
    PHP can add, delete, modify data in your database
    PHP can restrict users to access some pages on your website
    PHP can encrypt data


Why PHP?

    PHP runs on various platforms (Windows, Linux, Unix, Mac OS X, etc.)
    PHP is compatible with almost all servers used today (Apache, IIS, etc.)
    PHP supports a wide range of databases
    PHP is free. Download it from the official PHP resource: www.php.net
    PHP is easy to learn and runs efficiently on the server side

Powered by W3SCHOOLS

Java Script Learning

Java Script Learning : 

JavaScript is a scripting language of the Web.
All modern HTML pages are using JavaScript to add functionality, validate input, communicate with web servers, and much more. JavaScript is easy to learn. You will enjoy it.
  
JavaScript is a Scripting Language :
 
A scripting language is a lightweight programming language.
JavaScript is programming code that can be inserted into HTML pages.
JavaScript inserted into HTML pages, can be executed by all modern web browsers.
JavaScript is easy to learn.

 JavaScript Functions and Events :
 
The JavaScript statements, in the example above, are executed while the page loads.
More often, we want to execute code when an event occurs, like when the user clicks a button.
If we put JavaScript code inside a function, we can call that function when an event occurs.
You will learn much more about JavaScript functions and events in later chapters.

JavaScript in <head> or <body> :

You can place an unlimited number of scripts in an HTML document.
Scripts can be in the <body> or in the <head> section of HTML, and/or in both.
It is a common practice to put functions in the <head> section, or at the bottom of the page. This way they are all in one place and do not interfere with page content.

A JavaScript Function in <head>:

In this example, a JavaScript function is placed in the <head> section of an HTML page.
The function is called when a button is clicked:


Learning ASP.NET

Learning ASP.NET : 

What is ASP.NET?

ASP.NET is a development framework for building web pages and web sites with HTML, CSS, Java Script and server scripting. ASP means Active Server Page and with a Network. So that is called ASP.NET ASP.NET supports three different development models such as Web Pages, MVC (Model View Controller), and Web Forms.

ASP.NET

ASP.NET is a new ASP generation. It is not compatible with Classic ASP, but ASP.NET may include Classic ASP.
ASP.NET pages are compiled, which makes them faster than Classic ASP.
ASP.NET has better language support, a large set of user controls, XML-based components, and integrated user authentication.
ASP.NET pages have the extension .aspx, and are normally written in VB (Visual Basic) or C# (C sharp).
User controls in ASP.NET can be written in different languages, including C++ and Java.
When a browser requests an ASP.NET file, the ASP.NET engine reads the file, compiles and executes the scripts in the file, and returns the result to the browser as plain HTML.
  
ASP.NET Razor

Razor is a new and simple markup syntax for embedding server code into ASP.NET web pages, much like Classic ASP.
Razor has the power of traditional ASP.NET, but is easier to use and easier to learn.

 

ASP.NET Programming Languages

This tutorial covers the following programming languages:
  • Visual Basic (VB.NET)
  • C# (Pronounced C sharp)

ASP.NET Server Technologies

This tutorial covers the following server technologies:
  • Web Pages (with Razor syntax)
  • MVC (Model View Controller)
  • Web Forms (traditional ASP.NET)

 

ASP.NET Development Tools

ASP.NET supports the following development tools:
  • WebMatrix
  • Visual Web Developer
  • Visual Studio
This tutorial uses WebMatrix for Web Pages, and Visual Web Developer for MVC and Web Forms.

ASP.NET File Extensions

  • Classic ASP files have the file extension .asp
  • ASP.NET files have the file extension .aspx
  • ASP.NET files with Razor C# syntax have the file extension .cshtml
  • ASP.NET files with Razor VB syntax have the file extension .vbhtml
Powered By W3SCHOOL

Learning HTML5


What is HTML5?

HTML5 will be the new standard for HTML contains new tag.

The previous version of HTML, HTML 4.01, came in 1999. The web has changed a lot since then.

HTML5 is still a work in progress. However, the major browsers support many of the new HTML5 elements and APIs.

How Did HTML5 Get Started?

HTML5 is a cooperation between the World Wide Web Consortium (W3C) and the Web Hypertext Application Technology Working Group (WHATWG).

WHATWG was working with web forms and applications, and W3C was working with XHTML 2.0. In 2006, they decided to cooperate and create a new version of HTML.

Some rules for HTML5 were established:

    New features should be based on HTML, CSS, DOM, and JavaScript
    Reduce the need for external plugins (like Flash)
    Better error handling
    More markup to replace scripting
    HTML5 should be device independent
    The development process should be visible to the public


 Minimum HTML5 Document

This is a simple HTML5 code, with the minimum of required tags:

<html>
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document......
</body>

</html>



New Feature of HTML5

Some of the most interesting new features in HTML5:

    The <canvas> element for 2D drawing
    The <video> and <audio> elements for media playback
    Support for local storage
    New content-specific elements, like <article>, <footer>, <header>, <nav>, <section>
    New form controls, like calendar, date, time, email, url, search

Browser Support for HTML5

HTML5 is not yet an official standard, and no browsers have full HTML5 support.

But all major browsers (Safari, Chrome, Firefox, Opera, Internet Explorer) continue to add new HTML5 features to their latest versions.

Powered by W3SCHOOLS

Making a form using HTML

To make a form using HTML is very simple. Here you will use form tag and finish the option by closing form tag. Let try the code as below :

<form>
First name: <input type="text" name="firstname"><br>
Last name: <input type="text" name="lastname">
</form> 


Now we can try more with some information :

<form>
Name: <input type="text" name="name"><br>
District: <input type="text" name="district">

Fathers Name <input type="text" name="fathersname">
Mothers Name <input type="text" name="mothersname">
Submit <input type="submit" name="submit">
</form>