rss

About Me

My Photo
irnanto dwi saputra
View my complete profile

23 March 2011

History of PHP

PHP was first invented by Rasmus Lerdorf in 1994. Originally, PHP stands for Personal Home Page (Personal Site) and used to

record the number and to find out who his visitors on the homepage. Rasmus Lerdorf is one of the supporters of open source.Oleh therefore, he issued a Personal Home Page Tool version 1.0 for free. By removing the Personal Home Page Tools versions 1.0 to open source, so many programmers who are interested to participate in developing PHP.

In November 1997, released PHP 2.0. In this release, the PHP interpreter has been implemented in C program In this release also included the extension modules significantly enhance the ability of PHP.

In 1997, a company called Zend PHP interpreter to rewrite a cleaner, better, and faster. Then in June 1998, the company released a new interpreter for PHP and the formalizing such as the release of PHP 3.0 and PHP acronym was changed to recurring acronym for PHP: Hypertext Preprocessing.

In mid-1999, Zend released a new PHP interpreter and release is known with PHP 4.0. PHP version PHP 4.0 is the most widely used at the beginning of the 21st century. This version is widely used due to its ability to build complex web applications but still has the speed and stability.

In June 2004, Zend PHP 5.0 release. In this version, the core of the PHP interpreter underwent major changes. This version also includes object-oriented programming model into the PHP programming language to respond to developments in the direction of object-oriented paradigm.

Read more.....

Make Font Color

To make writing more interesting on the web, we can add color to the text. Example:

<FONT COLOR="red"> This red color. </ FONT>
<FONT COLOR="blue"> It's blue. </ FONT>
<FONT COLOR="green"> This green color. </ FONT>
<FONT COLOR="yellow"> This yellow color. </ FONT>
<FONT COLOR="cyan"> This is the color of cyan. </ FONT>
<FONT> This black color (without writing a color, you are writing a black as default. </ FONT>

Then the results will be displayed on the web brouser is:

This red color.
It's blue.
This green color.
This yellow color.
This color cyan.
This black color (without writing a color, you are writing a black as default.)

his black color (no color writing, your writing is black as the default.)

We can only make some colored paper using color names, to use another color, we can use colors using hexadecimal code. Examples of the use of colors using hexadecimal:

This color="#99FF00"> <font faded green color </ font>
This color="#663300"> <font brown </ font>

Then the results will be displayed in a web browser is:

This green color faded
This brown color

We can combine the font size, font type, color, and type text simultaneously.

<FONT SIZE="4" FACE="Comic Sans MS" COLOR="green"> <B> This bold, use Comic Sans MS font, size 4, green. </ B> </ FONT>

Then it will be like below.

This bold, use Comic Sans MS font, size , yellow.

Read more.....

Use The Heading Format

Heading is custom-sized letters used to write the title of the chapter or sub chapter. There are six levels of headers from H1 to H6. Header H1 is the largest and H6 is the smallest header. Example header format:

<html>
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
</body>
</html>

The results as below.

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5

Heading 6

Read more.....

Change Typeface

Web browsers use the default font, but we can change this using the FACE attribute.

<FONT FACE="Arial"> It uses arial font. </ FONT>
<FONT FACE="Arial Black"> It uses the font arial black. </ FONT>
<FONT FACE="Comic Sans MS"> It uses comic sans MS font. </ FONT>
<FONT FACE="Courier New"> It uses the font courier new. </ FONT>
<FONT FACE="Helvetica"> It uses Helvetica font. </ FONT>
<FONT FACE="Impact"> It uses the font Impact. </ FONT>
<FONT face="Times New Roman"> It uses Times New Roman font. </ FONT>
<FONT FACE="Verdana"> It uses the font Verdana. </ FONT>

The results will be displayed in a web browser like below.

It uses arial font.

It uses the font arial black.

It uses comic sans MS font.

It uses the font courier new.

It uses Helvetica font.

It uses the font Impact.

It uses Times New Roman font.

It uses the font Verdana.

Keep in mind that if we choose a font, must consider compatible with the client computer. Because not all types of letters on each client computer.

We can combine the font size, font type, color, and type text simultaneously.

<FONT SIZE="4" FACE="Comic Sans MS" COLOR="green"> <B> This bold, use Comic Sans MS font, size 4, green. </ B> </ FONT>

Then it will be like below.

This bold, use Comic Sans MS font, size 4, green.

Read more.....

Adjust The Font Size on Web

To create or manage the size of an inscription on a web page, we need to use tags like the following:

<FONT SIZE="1"> Font size 1 </ FONT>
<FONT SIZE="2"> Font size 2 </ FONT>
<FONT SIZE="3"> Font size 3 </ FONT>
<FONT SIZE="4"> Font size 4 </ FONT>
<FONT SIZE="5"> Font size 5 </ FONT>
<FONT SIZE="6"> Font size 6 </ FONT>
<FONT SIZE="7"> Font size 7 </ FONT>

Results of the HTML tags above can be seen below.

Font size 1

Font size 2

Font size 3

Font size 4

Font size 5

Font size 6

Font size 7

We can combine the font size, font type, color, and type text simultaneously.

<FONT SIZE="4" FACE="Comic Sans MS" COLOR="green"> <B> This bold, use Comic Sans MS font, size 4, green. </ B> </ FONT>

Then it will be like below.

This bold, use Comic Sans MS font, size 5, red.

Read more.....

Create a New Line in HTML

Now we will learn how to make a row. We usually hit the Enter key to create a new line. What about an HTML document?.

Enter keystrokes when creating HTML code, do not generate a line in the browser view. Such is the nature of writing HTML documents. So, how do I create a row?. Use tags <BR> or <br />.

The first line
<BR>The second line
<BR>The third line

Then it will be like below

The first line
The second line
The third line

Or

The first line <br />
The second line <br />
The third line

Then it will be like below

The first line
The second line
The third line

Read more.....

Create Bold, Italic, and Underline in HTML

There are three types of writing most frequently used in writing any document. The third type is bold, italics and underlined text. Two types of letters can also be combined

such as bold and italic, bold and underlined or italics and underlined. In fact it could be three types of writing were combined into one form of writing is bold, italic and underlined.

Like the previous article, the code in the HTML file is always limited by the tag <... >. Tags will be used to thicken <B> (bold) text, <I> to tilt (italic) text and <u> to underline (underline) text.

<B> To make bold. </ B>
<I> To create italics. </ i>
<u> To make the bottom line. </ U>

Read more.....

Use of Paragraphs in HTML

In writing the document, we often use your paragraph as a regulator of an article. In HTML use the paragraph could use a crate tag below.

Tag <P> serves to create a new paragraph. </ P>

Tag <P> have the align attribute, such as <P align="left"> that create paragraphs into the left flat, <P align="right"> that create paragraphs into the right flat and <P align="center"> create paragraphs become in the middle.

Examples of the use of paragraphs.

<P Align="right"> <FONT COLOR="red"> <B> This paragraph is using the tag P align = "right" that caused the whole paragraph into the right flat. Use tags FONT COLOR = "red" causes all the red letters, and tag B causes all letters to be bold. </ B> </ FONT> </ P>

<P align="center">Example use of tags align="center". This tag causes the text in the middle. Maybe you can feel the difference between P tags with BR tags. If the BR tag just cause to move to a new line, tag P causes jump to form a new paragraph. </ P>

The results obtained as below

This paragraph is using the tag P align = "right" that caused the whole paragraph into the right flat. Use tags FONT COLOR = "red" causes all the red letters, and tag B causes all letters to be bold.

Examples of the use of tag P align = "center". This tag causes the text in the middle. Maybe you can feel the difference between P tags with BR tags. If the BR tag just cause to move to a new line, tag P causes jump to form a new paragraph.

Read more.....

21 March 2011

XHTML

XHTML (eXtensible HyperText Markup Language) is the development of HTML markup language. XHTML has the ability to more

or less similar to HTML, but with strict rules of syntax lebuh. XHTML is an application of XML, a derivative of SGML (Standard Generalized Markup Language) is more limited.

Because XHTML should have a regularity of shape (following the proper syntax), XHTML documents can be automatically processed using standard XML processing, unlike HTML processors that require a fairly difficult and complex.

XHTML can be thought of as a combination between HTML and XML as it is a re-formulation of HTML in XML form.

Read more.....

HTML Tags

<HTML>
<HEAD>
<TITLE> </TITLE>

</HEAD>
<BODY>

</BODY>
</HTML>

Each line above is called a tag. Tag is the code used to his markup ASCII text into HTML file. Each tag flanked with pointy brackets. There is <HTML> opening tag and there is a closing tag is </ HTML> which is marked with a slash in front of his writings. Tag the above means that that will be written between these two tags is the content of an HTML document.

HEAD tag serves to clamp a variety of functions and information that is pleasing to the relevant web pages. TITLE tag is used to flank the sentence that became the title of the web page. There is a body that is <BODY> marker tag and closing tag is </ BODY> which means that as a marker of the body and put the attributes that will influence the format or display web pages as a whole.

Please note that html tags can be written in uppercase or lowercase. That is, writing or <html> or <html> <HTML> same results. However, keep in mind that writing the wrong tags although only one character will affect the HTML document, and can even result in an HTML document can not be displayed in the browser.

Read more.....

Submit more 20 Search Engine

submit your site to 20+ search engine free. using only a web address, your name and email only to be submitted to 20 more search engines

very easy right

Read more.....

Create Read more

There are several lines of basic code from the posts that need to be on the look.

<div class='post-body'>
<p><data:post.body/></p>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>

Take a good look at the code above, it is the original code of your template before the brain-tweaking. What we need now is to add a few lines of html code. Immediately, we see the code / text in red below.

<div class='post-body'>
<b:if cond='data:blog.pageType == "item"'>
<style>.fullpost{display:inline;}</style>
<p><data:post.body/></p> <!-- satu -->
<b:else/>
<style>.fullpost{display:none;}</style>

<p><data:post.body/></p> <!-- dua -->
<a expr:href='data:post.url'>Read more.....</a>
</b:if>

<div style='clear: both;'/> <!-- clear for photos floats -->
</div>

The code is deliberately to differentiate the color, the color blue is the original code of the template, the color red is the code that had been added. What should my friend look carefully is this code:

<p><data:post.body/></p>

The above code should make sure that there are two there should be no one because if there is one then post my friend could disappear altogether, but in fact the whole post is not lost, but not in the show alias in hiding. Postings on the show and in hiding since the code:

<style>.fullpost{display:inline;}</style>

<style>.fullpost{display:none;}</style>

{display:inline;} means that in the show, and {display: none;} means do not display an alias to hide and this is the code if incorrect installation resulted in all posts to be not in the show, so if united the entire code, then something like this:

Show posts

Do not show post

Show posts if at the click of a link Read more...

Steps to be no less importantly, my friend have to install the code Readmorenya on the Edit HTML tab and not on the Compose tab, and the code Read more ... should always be on the cover. Example installation of the code read more ... in articles like this:

It is written in the first paragraph that will appear on your blog home page, paragraph - the other paragraphs will occur if the blog visitors to click the link Read more ...

<div class="fullpost">
writing / paragraphs to hide
</ Div>

You want to see the original sample please click here

Read more.....

How to Modify Comments Box

Please know in advance that each code template from each other can be different is the same, if this tutorial is not the same as the existing code in your template, then you can experiment yourself with this code.

Ok, we just practiced how to modify the comment box like the one in the blog irnanto-ilmupengetahuan.blogspot.com.

  1. Login to blogger with your ID.
  2. Click Layout.
  3. Click the Edit HTML tab.
  4. Click Download Full Template. Please backup your template first (important).
  5. Put a check / tick the little box next to Expan templates Widget.
  6. Wait a few moments when the process is underway.
  7. Find the code in the CSS like this:
  8. #comments h4 {
    margin:1em 0;
    font-weight: bold;
    line-height: 1.4em;
    text-transform:uppercase;
    letter-spacing:.2em;
    color: $sidebarcolor;
    }

    #comments-block {
    margin:1em 0 1.5em;
    line-height:1.6em;
    }
    #comments-block .comment-author {
    margin:.5em 0;
    }
    #comments-block .comment-body {
    margin:.25em 0 0;
    }
    #comments-block .comment-footer {
    margin:-.25em 0 2em;
    line-height: 1.4em;
    text-transform:uppercase;
    letter-spacing:.1em;
    }
    #comments-block .comment-body p {
    margin:0 0 .75em;
    }
    .deleted-comment {
    font-style:italic;
    color:gray;
    }

  9. Remove / delete the code above and change with the code below:
  10. #comments h4 {
    margin:0;
    font-weight: bold;
    line-height: 1.4em;
    text-transform:uppercase;
    letter-spacing:.2em;
    color: #000;
    }

    #bg_commentblock {
    width: 548px;
    background: #ffffff;
    float: left;
    padding:20px;
    margin:0 0 10px 0;
    border:1px solid #C0C0C0;
    }

    #commentblock {
    width: 510px;
    background: #E8E8E8;
    text-align:left;
    padding: 20px 20px 10px 20px;
    margin: 10px 0px 0px 0px;
    border-top: 2px solid #333333;
    border-bottom: 1px solid #333333;
    }
    #commentblock ol {
    list-style-type: square;
    margin: 0px 0px 0px 10px;
    padding: 0px 0px 10px 0px;
    }
    .commentdate {
    font-size: 12px;
    padding-left: 0px;
    }
    #commentlist li p {
    margin-bottom: 8px;
    line-height: 20px;
    padding: 0px;
    }

    .commentname {
    color: #333333;
    margin: 0px;
    padding: 5px 5px 5px 0px;
    }

    .commentinfo{
    clear: both;
    }

    .commenttext {
    clear: both;
    margin: 3px 0px 10px 0px;
    padding: 20px 10px 5px 10px;
    width: 490px;
    background: #FFFFFF url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEii-oGGjtyQ_KJzmcFIaLxG7YF9LYyhSo_2UZKySlQ2qv2ez3qHfC7RQeylLcIOWr3f40ZU84tcx1llbpH9F53-skLbVolrlLRoiXZjK6UdsZunvziqg45Rz1Wc4lgV3xhf9Z3kk0QsA5Ua/s320-r/comment.gif) no-repeat top left;
    }

    .commenttext-admin {
    clear: both;
    margin: 3px 0px 10px 0px;
    padding: 20px 10px 5px 10px;
    width: 490px;
    background: #FFFFFF url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEii-oGGjtyQ_KJzmcFIaLxG7YF9LYyhSo_2UZKySlQ2qv2ez3qHfC7RQeylLcIOWr3f40ZU84tcx1llbpH9F53-skLbVolrlLRoiXZjK6UdsZunvziqg45Rz1Wc4lgV3xhf9Z3kk0QsA5Ua/s320-r/comment.gif) no-repeat top left;
    }

  11. See Toward the bottom, and look for code like this
  12. <b:includable id='comments' var='post'>
    <div class='comments' id='comments'>
    <a name='comments'/>
    <b:if cond='data:post.allowComments'>
    <h4>
    <b:if cond='data:post.numComments == 1'>
    1<data:commentLabel/>:
    <b:else/>
    <data:post.numComments/> <data:commentLabelPlural/>:
    </b:if>
    </h4>

    <b:if cond='data:post.commentPagingRequired'>
    <span class='paging-control-container'>
    <a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'><data:post.oldestLinkText/></a>
    &#160;
    <a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'><data:post.olderLinkText/></a>
    &#160;
    <data:post.commentRangeText/>
    &#160;
    <a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'><data:post.newerLinkText/></a>
    &#160;
    <a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'><data:post.newestLinkText/></a>
    </span>
    </b:if>

    <dl id='comments-block'>
    <b:loop values='data:post.comments' var='comment'>
    <dt expr:class='&quot;comment-author &quot; + data:comment.authorClass' expr:id='data:comment.anchorName'>
    <a expr:name='data:comment.anchorName'/>
    <b:if cond='data:comment.authorUrl'>
    <a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
    <b:else/>
    <data:comment.author/>
    </b:if>
    <data:commentPostedByMsg/>
    </dt>
    <dd class='comment-body'>
    <b:if cond='data:comment.isDeleted'>
    <span class='deleted-comment'><data:comment.body/></span>
    <b:else/>
    <p><data:comment.body/></p>
    </b:if>
    </dd>
    <dd class='comment-footer'>
    <span class='comment-timestamp'>
    <a expr:href='data:comment.url' title='comment permalink'>
    <data:comment.timestamp/>
    </a>
    <b:include data='comment' name='commentDeleteIcon'/>
    </span>
    </dd>
    </b:loop>
    </dl>

    <b:if cond='data:post.commentPagingRequired'>
    <span class='paging-control-container'>
    <a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'>
    <data:post.oldestLinkText/>
    </a>
    <a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'>
    <data:post.olderLinkText/>
    </a>
    &#160;
    <data:post.commentRangeText/>
    &#160;
    <a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'>
    <data:post.newerLinkText/>
    </a>
    <a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'>
    <data:post.newestLinkText/>
    </a>
    </span>
    </b:if>

    <p class='comment-footer'>

    <b:if cond='data:post.embedCommentForm'>
    <b:include data='post' name='comment-form'/>
    <b:else/>
    <b:if cond='data:post.allowComments'>
    <a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
    </b:if>
    </b:if>

    </p>
    </b:if>

  13. Remove / delete the code above and change with the code below:
  14. <b:includable id='comments' var='post'>

    <div class='comments' id='comments'>
    <a name='comments'/>
    <b:if cond='data:post.allowComments'>

    <div id='bg_commentblock'>

    <h4>

    Comments:

    </h4>

    <div id='commentblock'><!--commentblock-->

    <strong>ada</strong> <b:if cond='data:post.numComments == 1'>1
    <b:else/>
    <strong><data:post.numComments/> <data:commentLabelPlural/> ke &#8220;<data:post.title/>&#8221;</strong>
    </b:if>

    <dl class='commentlist'>
    <b:loop values='data:post.comments' var='comment'>
    <span><dt expr:class='&quot;comment-author &quot; + data:comment.authorClass' expr:id='data:comment.anchorName' style='display:inline'>
    <a expr:name='data:comment.anchorName'/>
    <b:if cond='data:comment.authorUrl'>
    <a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
    <b:else/>
    <data:comment.author/>
    </b:if>
    <data:commentPostedByMsg/>
    </dt>pada hari&#160;<dd class='comment-footer' style='display:inline; margin:0px'>
    <span class='comment-timestamp'>
    <a expr:href='data:comment.url' title='comment permalink'>
    <data:comment.timestamp/>
    </a>
    <b:include data='comment' name='commentDeleteIcon'/>
    </span>
    </dd></span>
    <dd class='commenttext'>
    <b:if cond='data:comment.isDeleted'>
    <span class='deleted-comment'><data:comment.body/></span>
    <b:else/>
    <p><data:comment.body/></p>
    </b:if>
    </dd>
    </b:loop>
    </dl>
    <b:if cond='data:post.commentPagingRequired'>
    <span class='paging-control-container'>
    <a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'>
    <data:post.oldestLinkText/>
    </a>
    <a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'>
    <data:post.olderLinkText/>
    </a>
    &#160;
    <data:post.commentRangeText/>
    &#160;
    <a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'>
    <data:post.newerLinkText/>
    </a>
    <a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'>
    <data:post.newestLinkText/>
    </a>
    </span>
    </b:if>

    <p class='comment-footer'>

    <b:if cond='data:post.embedCommentForm'>

    <b:include data='post' name='comment-form'/>

    <b:else/>

    <b:if cond='data:post.allowComments'>

    <a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>

    </b:if>

    </b:if>

    </p>
    </div><!--end commentblock-->

    </div>
    </b:if>

  15. 11. Click the Save Template button.
  16. 12. Done. Please see the results.

Above code of course is not absolutely have to like it, if you are slightly familiar with css, then you can create more. Especially on the width of the comment, you must adjust the width of your template comment box. Little guidance, to change the width of koemntar box above, you only replace the value of its width, for example: width: 548px; in change so width: 500px; or how it fit with your template.

Good luck.

Read more.....

18 March 2011

MySQL Privileges

MySQL has several features, among others:

  1. Portability. MySQL can run stable at a variety of operating systems like Windows, Linux, FreeBSD, Mac Os X Server, Solaris, Amiga, and many more.
  2. Open source software. MySQL is distributed as open source software, under GPL license so it can be used for free.
  3. Multi-user. MySQL can be used by multiple users at the same time without experiencing any problems or conflicts.
  4. 'Performance tuning', MySQL has an amazing speed in dealing with simple queries, in other words more SQL can process per unit time.
  5. Variety of data types. MySQL has a range of very rich data types, such as signed / unsigned integer, float, double, char, text, date, timestamp, and others.
  6. Commands and Functions. MySQL has a full service and functionality that support the Select and Where command in a command (query).
  7. Security. MySQL has several layers of security such as the level Subnet, host name, and permit access to users with a detailed licensing system and encrypted passwords.
  8. Scalability and Restrictions. MySQL database capable of handling large scale, with the number of records (records) more than 50 million and 60 thousand and 5 billion row table. In addition, the index limits that can fit up to 32 indexes on each table.
  9. Connectivity. MySQL can connect with clients using TCP / IP, Unix sockets (UNIX), or Named Pipes (NT).
  10. Localisation. MySQL can detect an error message on the client by using more than twenty languages. Notwithstanding that, the Indonesian language has not been included in it.
  11. Interface. MySQL has a user interface (interface) to various applications and programming languages ​​by using the function API (Application Programming Interface).
  12. Client and Tools. MySQL comes with various tools (tool) that can be used for database administration, and on any equipment that is included instructions online.
  13. Table structure. MySQL has a table structure that is more flexible in dealing with ALTER TABLE, compared to other database sort of PostgreSQL or Oracle.

source: wikipedia.org

Read more.....

16 March 2011

MySQL

MySQL is a software SQL database management system or DBMS is multithreaded, multi-user, with about 6 million installations worldwide. MySQL AB makes MySQL available as free software under the GNU General Public License (GPL), but

they also sell under a commercial license for those cases where its use is not compatible with the GPL.

MySQL is an implementation of relational database management system (RDBMS) that is distributed free under GPL (General Public License). Each user can freely use MySQL, but with the restriction that software should not be used as a commercial derivative product. MySQL is actually a derivative of one of the main concepts in the database who have been there before; SQL (Structured Query Language). SQL is a database operation concept, especially for the election or selection and data entry, which allows the operation feasible data automatically.

Reliability of a database system (DBMS) can be known from the way his work in the optimizer to process SQL commands made by users and application programs that use it. As a database server, MySQL database support the operation of transactional and non-transactional database operation. In non-transactional mode of operation, MySQL can be said to excel in terms of performance than the database server software competitors. However, on non-transactional mode there is no guarantee of reliability of stored data, therefore non-transactional mode is only suitable for the type of applications that do not require reliability data such as web-based blogging application (WordPress), CMS, and the like. For the needs of system intended for business are strongly advised to use transactional database mode, it's just that as a consequence the performance of MySQL in transactional mode is not as fast performance in non-transactional mode.

Read more.....

PHP Advantages

PHP has many advantages that are not owned by a kind of script language. PHP is focused on server-side scripting, which can do anything that can be done by CGI, such as collect form data, generate dynamic web page content, and the ability to send and receive cookies, even more than the ability of CGI.

PHP can be used on

all operating systems, including Linux, Microsoft Windows, Unix, Mac OS, RISC OS. PHP also supports a web server such as Apache, Microsoft Internet Information Server (MIIS), Personal Web Server (PWS), Netscape and iPlanet servers, Oreilly Website Pro server, audium, Xitami, OmniHTTPd, and many others, even PHP can work as a CGI processor.

PHP does not terbtas in the output HTML (Hypertext Markup Language). PHP also has the ability to process the output images, PDF files, and Flash movies. PHP can also produce text such as XHTML and other XML files.

One feature that can be relied upon by PHP is its support for multiple databases. Here's a database that can be supported by PHP.

  • Adabas D
  • dBase
  • Direct MS-SQL
  • Empress
  • FilePro (read only)
  • FrontBase
  • Hyperwave
  • IBM DB2
  • Informix
  • Ingres
  • InterBase
  • MSQL
  • MySQL
  • ODB
  • Oracle (OC17 and OC 18)
  • Ovrimos
  • PostgrSQL
  • Solid
  • Sybase
  • Unix DBM
  • Velocis

Read more.....

11 March 2011

PHP

PHP stands for PHP Hypertext Prepocessor used as a server-side scripting languages in web programming that is inserted in a html document.

Use of PHP allows web can be

made dynamic so that the maintenance web sitis has become much easier and efficient. PHP can also be used to build a CMS.

PHP is Open Source software is distributed and licensed free of charge and can be downloaded for free from the official website http://www.php.net. PHP was written using C language.

Syntax PHP program or script written in PHP clamp special mark. There are four different pairs of PHP tags that can be used to mark the script PHP blog:

  1. <? php ..... ?>
  2. <script language="php"> ..... </ script>
  3. <? ..... ?>
  4. <% ..... %>

Mode 1 and 2 is the most commonly used, although three seems more practical way because the way the 3 is not always enabled in php.ini configuration file contained in the directory c:\apache\php.

How 4 also has possibility easy for those of you who are familiar with the ASP (Active Server Page). However, if it is not known, it must be done pengaktifanpada php.ini configuration file.

Read more.....

09 March 2011

HyperText Markup Language (HTML)

HyperText Markup Language (HTML) is a markup language used to create a web page, featuring a variety of information in an Internet web browser and a simple hypertext formatting is written into an ASCII format file to
generate a form of the integrated display. In other words, files created in word processing software and saved into an ASCII format so that it becomes normal home page with HTML commands. Starting from a previously widely used language in the world of publishing and printing called SGML (Standard Generalized Markup Language), HTML is a standard that is widely used to display web pages. HTML is now an Internet standard defined and controlled its use by the World Wide Web Consortium (W3C). HTML created by TEAM Caillau collaboration with Berners-lee robert when they worked at CERN in 1989 (CERN is a high-energy physics research institute in Geneva).
Read more.....
 

Site Info

Google Pagerank Powered by  MyPagerank.Net My Ping in TotalPing.com TopOfBlogs My Zimbio Blog Directory