PHP Installation
What Do I Need?To start using PHP, you can:
Find a web host with PHP and MySQL support
Install a web server on your own PC, and then install PHP and MySQL
Use a Web Host With PHP SupportIf your server has activated support for PHP you do not need to do anything.Just create some .php files, place them in your web directory, and the server will automatically parse them for you.You do not need to compile anything...
Home Archives for November 2014
20/11/2014
19/11/2014
PHP Introduction
PHP Introduction
PHP scripts are executed on the server.
What You Should Already KnowBefore you continue you should have a basic understanding of the following:
HTML
CSS
JavaScript
If you want to study these subjects first, find the tutorials on our Home page.
What is PHP?
PHP is an acronym for "PHP: Hypertext Preprocessor"
PHP is a widely-used, open source scripting language
PHP scripts are executed on the server
PHP...
18/11/2014
HTML Attributes
HTML Attributes
Attributes provide additional information about HTML elements.
HTML Attributes
HTML elements can have attributes Attributes provide additional information about an element Attributes are always specified in the start tag Attributes come in name/value...
HTML Elements
HTML Elements
HTML documents are made up by HTML elements.
HTML elements are written with a start tag, with an end tag, with the content in between:
<tagname>content</tagname>
The HTML element is everything from the start tag to the end tag:
<p>My first HTML paragraph.</p>
Start tag ...
10/11/2014
JavaScript - Document Object Model or DOM
A Document object represents the HTML document that is displayed in that window. The Document object has various properties that refer to other objects which allow access to and modification of document content.
The way that document content is accessed and modified is called the Document Object Model, or DOM. The Objects are organized...
06/11/2014
What is JavaScript ?
What is JavaScript ?
JavaScript started life as LiveScript, but Netscape changed the name, possibly because of the excitement being generated by Java.to JavaScript. JavaScript made its first appearance in Netscape 2.0 in 1995 with a name LiveScript.JavaScript is a lightweight, interpreted programming language with object-oriented capabilities that allows you to build interactivity into otherwise static HTML pages.The general-purpose...
JavaScript Introduction
JavaScript Introduction
JavaScript is the most popular programming language in the world.
It is the language for HTML, for the Web, for computers, servers, laptops, tablets, smart phones, and more.
This page contains some examples of what JavaScript can do in HTML.
JavaScript Can Change HTML Elements:
The HTML DOM (the Document...
04/11/2014
CSS Selectors
CSS Selectors
CSS selectors allow you to select and manipulate HTML element(s).
CSS selectors are used to "find" (or select) HTML elements based on their id, classes, types, attributes, values of attributes and much more.
The element Selector:
The element selector selects elements based on the element name.
You can select all...
02/11/2014
CSS syntax
CSS syntax
A CSS rule set consists of a selector and a declaration block:
The selector points to the HTML element you want to style.
The declaration block contains one or more declarations separated by semicolons.
Each declaration includes a property name and a value, separated by a colon.
CSS Example:
A CSS declaration...
01/11/2014
HTML Basics
HTML Basics
HTML Headings
HTML headings are defined with the <h1> to <h6>
tags:
Example:
Coding:
<!DOCTYPE html>
<html>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This...
HTML Editors
HTML Editors
Write HTML Using Notepad or TextEdit
HTML can be edited by using a professional HTML editor like:
Adobe Dreamweaver
Microsoft Expression Web
CoffeeCup HTML Editor
However, for learning HTML we recommend a text editor like Notepad (PC) or TextEdit (Mac).
We believe using a simple text editor is a good way to...
Why learn HTML ?
It is possible to create webpages without knowing anything about the HTML source behind the page.There are excellent editors on the market that will take care of the HTML parts. All you need to do is layout the page.However, if you want to make it above average in webdesign, it is strongly recommended that you understand these tags.The most important benefits are:
You can use tags the editor does not support.
You can read...
Subscribe to:
Posts (Atom)
Check Your Codes
|
|