Php Brilliants
exchange brilliant ideas

Oct1

XML Tree

XML documents form a tree structure that starts at “the root” and branches to “the leaves”.

<?xml version=”1.0″ encoding=”ISO-8859-1″?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don’t forget me this weekend!</body>
</note>

Posted by admin under XML | Permalink | No Comments »
Oct1

CSS Id and Class

The id Selector

The id selector is used to specify a style for a single, unique element.

The id selector uses the id attribute of the HTML element, and is defined with a “#”.

The class Selector

The class selector is used to specify a style for a group of elements. Unlike the id selector, the class selector is most often used on several elements.

This allows you to set a particular style for many HTML elements with the same class.

The class selector uses the HTML class attribute, and is defined with a “.”

 

Posted by admin under CSS | Permalink | Comments Off
Oct1

introduction to PHP

PHP is a powerful tool for making dynamic and interactive Web pages.

PHP is the widely-used, free, and efficient alternative to competitors such as Microsoft’s ASP.

In our PHP tutorial you will learn about PHP, and how to execute scripts on your server.

Posted by admin under PHP | Permalink | 1 Comment »
Oct1

html in action

<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

Posted by admin under HTML | Permalink | 1 Comment »
Sep30

JavaScript Post

Test Post

Posted by admin under JAVASCRIPT | Permalink | 1 Comment »
Sep30

PHP Installation

If your server supports PHP you don’t need to do anything.

Just create some .php files in your web directory, and the server will parse them for you. Because it is free, most web hosts offer PHP support.

However, if your server does not support PHP, you must install PHP.

Here is a link to a good tutorial from PHP.net on how to install PHP5: http://www.php.net/manual/en/install.php

Posted by admin under PHP | Permalink | 1 Comment »
Sep28

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Posted by admin under PHP | Permalink | 3 Comments »