<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8599048919554551230</id><updated>2024-10-05T10:53:36.027+07:00</updated><category term="visual basic"/><category term="php"/><category term="c++"/><category term="JavaScript"/><category term="basic"/><category term="css"/><category term="java"/><category term="netbeans"/><category term="sql"/><category term="xml"/><title type='text'>programming is easy</title><subtitle type='html'>you can read some articles and programs from my blog and you can experiment after read this blog.&#xa;now we are must study hard from now.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>34</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-6987128823781730681</id><published>2011-05-30T13:24:00.001+07:00</published><updated>2011-05-30T13:24:35.583+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>DETTACH / attach in SQL SERVER 2000</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/05/dettach-attach-in-sql-server-2000.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;DETTACH / attach in SQL SERVER 2000 &lt;/em&gt;&lt;/strong&gt;    &lt;br /&gt;You probably have done a copy of the database to other location by using a database backup Either attach or detach the database operation. Do you know what precisely Happen behind detach the database under the hood?     &lt;br /&gt;Detach the database Could Be done only if the database is not being accessed by anyone. If you Would like to make sure none accesses the database, you cans set the database to sql SINGLE_USER in ALTER DATABASE command with one of the termination options: WITH ROLLBACK AFTER n SECONDS WITH ROLLBACK IMMEDIATE or (Where n is a any integer number), for example:     &lt;br /&gt;ALTER DATABASE AdventureWorks2008     &lt;br /&gt;SET SINGLE_USER     &lt;br /&gt;WITH ROLLBACK AFTER 3 SECONDS     &lt;br /&gt;After That you cans sp_detach_db &amp;lt;databasename&amp;gt; issue (for example: EXEC sp_detach_db AdventureWorks2008).     &lt;br /&gt;Interesting thing to note Is That Pls detach a database is Issued, SQL Server will of copy dirty pages (pages changes since last checkpoint) back to corresponding pages in database files. You just only need to copy / move files into other database location for attaching the SQL Server database and transaction log files Could rebuild for you. But there are two conditions database That you need to be aware about.     &lt;br /&gt;If the database is read only, you need to include not only data files but Also Pls attach the transaction log file database. If the database is read write, you need only to include data files.     &lt;br /&gt;Since SQL Server 2005, the syntax for attach database is CREATE DATABASE ON &amp;lt;filespec&amp;gt; &amp;lt;database name&amp;gt; [, .... N] FOR {attach | ATTACH_REBUILD_LOG}. The legacy command sp_attach_db Should not be Used Because it Becomes depreciated features and Could Be removed in future SQL Server releases. The difference Between the new syntax and legacy Is That the maximum number of files on legacy is up to 16 files on the new syntax whereas the maximum number of files That Could be attached is up to 32.767 32.767 files and file groups. Certainly you will from never reach the number of files That need to be attached.     &lt;br /&gt;To me, attach-detach is as good as a backup-restore the database. The only difference Between Them Is That database is still accessible During the backup-restore whereas attach-detach requires a database to be offline.     &lt;br /&gt;** If my friends do not know what it means can translate on google     &lt;br /&gt;Bottom line:     &lt;br /&gt;DETTACH / Attach     &lt;br /&gt;Function: copying files to a server database and SQL Server menginisilisasi     &lt;br /&gt;How to Attach:     &lt;br /&gt;From Interprise Manager     &lt;br /&gt;Database     &lt;br /&gt;Right Click - All Task - Attach     &lt;br /&gt;Find the file *. MDF     &lt;br /&gt;How Dettach:     &lt;br /&gt;From Interprise Manager     &lt;br /&gt;Click on a database which is     &lt;br /&gt;Right click&lt;/p&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/6987128823781730681/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/05/dettach-attach-in-sql-server-2000.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/6987128823781730681'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/6987128823781730681'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/05/dettach-attach-in-sql-server-2000.html' title='DETTACH / attach in SQL SERVER 2000'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-3419683244219404895</id><published>2011-05-30T13:17:00.000+07:00</published><updated>2011-05-30T13:20:35.602+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>learning Data Manipulation Language (DML)</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/05/learning-data-manipulation-language-dml.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;Data Manipulation Language (DML) &lt;/em&gt;&lt;/strong&gt;    &lt;br /&gt;&lt;strong&gt;ADD DATA&lt;/strong&gt; &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;     &lt;br /&gt;INSERT INTO table_name       &lt;br /&gt;VALUES (value_1, value_2 ,..., nilai_n) &lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;   &lt;br /&gt;OR &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;     &lt;br /&gt;INSERT INTO table_name (kolom_1, kolom_2 ,..., Kolom_n)       &lt;br /&gt;VALUES (value_1, value_2 ,..., nilai_n);       &lt;br /&gt;NOTE &lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;   &lt;br /&gt;Fields with are mandatory NOT NULL konstraint     &lt;br /&gt;Writing data to the type of numbers are not enclosed in quotation marks     &lt;br /&gt;Writing data to the type of string or a date enclosed in quotation marks     &lt;br /&gt;Data on the child table (foreign key) must exist in the parent     &lt;br /&gt;EXAMPLE     &lt;br /&gt;INSERT INTO STUDENT VALUES (2001, 1, &#39;ANITA&#39;, &#39;MAGELANG&#39;, &#39;1-JAN-85 &#39;);     &lt;br /&gt;INSERT INTO STUDENTS (Thang, NIM, NAME) VALUES (2005, 9, &#39;David&#39;); &lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;&lt;strong&gt;CHANGE DATA&lt;/strong&gt; &lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;UPDATE table_name     &lt;br /&gt;SET     &lt;br /&gt;kolom_1 = nilai_baru_1,     &lt;br /&gt;kolom_2 = nilai_baru_2,     &lt;br /&gt;...     &lt;br /&gt;kolom_3 = nilai_baru_n     &lt;br /&gt;[WHERE condition]     &lt;br /&gt;Change all the rows, one column     &lt;br /&gt;Change all thmasuk to 2003     &lt;br /&gt;UPDATE students     &lt;br /&gt;SET thmasuk = 2003;     &lt;br /&gt;Changing a particular column for a particular row     &lt;br /&gt;change the column name to Marani Anita in the table of his students who NIM = 200     &lt;br /&gt;UPDATE students     &lt;br /&gt;SET name = &#39;Anita Marani&#39;     &lt;br /&gt;WHERE NIM = 200;     &lt;br /&gt;Change multiple columns at once     &lt;br /&gt;UPDATE Student     &lt;br /&gt;SET     &lt;br /&gt;name = &#39;Anita Mariana&#39;,     &lt;br /&gt;thmasuk = 2000     &lt;br /&gt;WHERE NIM = 200;     &lt;br /&gt;Operator Condition     &lt;br /&gt;Relational Operators (=,&amp;gt;, &amp;lt;,&amp;gt; =, &amp;lt;=, &amp;lt;&amp;gt;)     &lt;br /&gt;Boolean Operators (And, Or, Not)     &lt;br /&gt;UPDATE class     &lt;br /&gt;SET NIP = 1     &lt;br /&gt;WHERE CODE = &#39;P1&#39;     &lt;br /&gt;AND NIP = 2     &lt;br /&gt;Between and Not Between     &lt;br /&gt;UPDATE class     &lt;br /&gt;SET NIP = 1     &lt;br /&gt;WHERE idkelas BETWEEN 1 AND 3     &lt;br /&gt;Operator Conditions (Cont ...)     &lt;br /&gt;In and Not In     &lt;br /&gt;UPDATE class     &lt;br /&gt;SET NIP = 1     &lt;br /&gt;Idkelas WHERE IN (1,2,3)     &lt;br /&gt;Is Null and Is Not Null     &lt;br /&gt;UPDATE Student     &lt;br /&gt;SET DATE = &#39;21-Aug-89 &#39;     &lt;br /&gt;WHERE date IS NULL     &lt;br /&gt;Like and Not Like     &lt;br /&gt;Wildcard     &lt;br /&gt;%  some arbitrary character     &lt;br /&gt;_  one arbitrary character     &lt;br /&gt;[]  any one character in the range     &lt;br /&gt;[^]  any single character outside the range &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;     &lt;br /&gt;Sample Data: Erike, Mirna, Ani, Kaka, Ubaid       &lt;br /&gt;LIKE &#39;% a&#39;: Mirna, Kaka       &lt;br /&gt;LIKE &#39;% a%&#39;: Mirna, Kaka, Ubaid       &lt;br /&gt;LIKE &#39;_a%&#39;: Kaka       &lt;br /&gt;LIKE &#39;% [a-k] a%&#39;: Kaka       &lt;br /&gt;LIKE &#39;% [^ a-k] a%&#39;: Mirna &lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;   &lt;br /&gt;Example Queries: &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;     &lt;br /&gt;UPDATE Student       &lt;br /&gt;SET       &lt;br /&gt;Address = Null       &lt;br /&gt;WHERE Name LIKE &#39;% a%&#39;;&lt;/p&gt;&lt;/blockquote&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/3419683244219404895/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/05/learning-data-manipulation-language-dml.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/3419683244219404895'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/3419683244219404895'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/05/learning-data-manipulation-language-dml.html' title='learning Data Manipulation Language (DML)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-4653226580630785377</id><published>2011-05-26T19:45:00.001+07:00</published><updated>2011-05-26T19:51:07.518+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="java"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><title type='text'>Java scripts and Java differences</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/05/java-scripts-and-java-differences.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;Java scripts and Java differences&lt;/em&gt;&lt;/strong&gt;    &lt;br /&gt;First in Class X EMP B (Programs and Classes), Most Hated Banget with that name there are 2 JAVA Karna he thought of Master Patterns Differ in Teaching Us, And We Also confused with Javascript on the Web!    &lt;br /&gt;So What is actually &amp;quot;Differences Between Java and Java Script ..?&amp;quot;, if both are indeed derived from&amp;quot; Java &amp;quot;...!!. Ga At first I also know what is actually &amp;quot;Differences Between Java Script with Java&amp;quot;, due to curious to know eventually I try to ask the same oom Google with the Keyword &amp;quot;The difference with Java Java Script&amp;quot; and after I had been looking for finally met as well. nah these results I found:    &lt;br /&gt;1.    &lt;br /&gt;Javascript is usually in its use combined with HTML, the aim is to enrich the HTML to get more interactive, java script therefore depend strongly on the browser used. If your browser does not mengijikan (disable) to use a javascript feed applications that use javascript are not the maximum, even could have been an error. Java is a language pemogramam object-oriented programming (OOP) in which applications can be made directly in the execution, of course by doing the compiler first. Language similar to java. Net was Microsoft, but java is open, in contrast with. Net is its use requires a license.    &lt;br /&gt;2.    &lt;br /&gt;JavaSript just a scripting language, whereas Java programming language that is multifunctional and platform independent. Java can be used to create desktop applications and also server (SDK and EE) is also for programming the mobile (ME), while JavaSript based on client-side can only dijalakan with the browser and executed on the client computer.    &lt;br /&gt;In addition, Java can also be used to create desktop applications that run in the browser by using the applet, while JavaScript can only work when combined with HTML.    &lt;br /&gt;3.    &lt;br /&gt;JavaScript is a script (text) which is read by the browser, then translated into a set of commands. Then the order was executed in the browser. JavaScript (generally) Dlm pasted HTML. Java is a program which generated (compiled) on the server, then run in a browser (if she Java Applet) or run on the server (if he&#39;s Java Server Pages).New results are displayed in the browser. Java programs must be retrieved from the server.    &lt;br /&gt;So the main difference between Jaca Script with Java is the way a program is executed. With its own java can penggunakaannya broader, JME -&amp;gt; for application development on mobile phones, JDK -&amp;gt; application development on desktops and Jee -&amp;gt; for the development of large applications (enterprise)    &lt;br /&gt;How? Are Useful For pal? Easy - Helpful hope ya friend!&lt;/p&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/4653226580630785377/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/05/java-scripts-and-java-differences.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/4653226580630785377'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/4653226580630785377'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/05/java-scripts-and-java-differences.html' title='Java scripts and Java differences'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-2746279739903494319</id><published>2011-05-26T00:48:00.000+07:00</published><updated>2011-05-26T00:56:50.684+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="netbeans"/><title type='text'>CONNECTION TO DATABASE, metadata</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/05/connection-to-database-metadata.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;&lt;strong&gt;CONNECTION TO DATABASE, metadata&lt;/strong&gt;    &lt;br /&gt;Project for which we can make to a high with the database we have, then we have toconnect your database with an existing project.    &lt;br /&gt;Process connection:    &lt;br /&gt;a. Registration drivers    &lt;br /&gt;b. Connection to the database    &lt;br /&gt;c. Both must exist in the instruction block try {} catch (Exception) {}    &lt;br /&gt;Class / Interface in use:    &lt;br /&gt;Class Class    &lt;br /&gt;Method:    &lt;br /&gt;static Class forName (String namaclass) à Driver Registration class    &lt;br /&gt;Ex:    &lt;br /&gt;Class c = Class.forName (&amp;quot;com.jdbc.mysql.Driver&amp;quot;);    &lt;br /&gt;All classes used for database management, is in the package java.sql .*    &lt;br /&gt;Class DriverManager    &lt;br /&gt;Method:    &lt;br /&gt;Connection getConnection (String location, String username, String pwd)    &lt;br /&gt;Ex:    &lt;br /&gt;String location = &amp;quot;jdbc: mysql: / / localhost / nama_db&amp;quot;;    &lt;br /&gt;String uname = &amp;quot;username&amp;quot;;    &lt;br /&gt;String pwd = &amp;quot;password&amp;quot;;    &lt;br /&gt;Connection con = DriverManager.getConnection (location, uname, pwd);    &lt;br /&gt;À Connection Interface    &lt;br /&gt;Exception:    &lt;br /&gt;È Class ClassNotFoundException Exception will occur if there is an error registrationclass,    &lt;br /&gt;use forName method of class Class.    &lt;br /&gt;Class SQLExceptionèException to know the error connection and access the database / table.    &lt;br /&gt;Example 1    &lt;br /&gt;Create a new project, add the object form with the draft as follows:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh6.ggpht.com/_s6zYtUnPIY4/TcllFL6YCfI/AAAAAAAAAjA/gWCbKjx718M/s1600-h/clip_image002%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;CONNECTION TO DATABASE, metadata&quot; border=&quot;0&quot; alt=&quot;CONNECTION TO DATABASE, metadata&quot; src=&quot;http://lh4.ggpht.com/_s6zYtUnPIY4/TcllG3qfeFI/AAAAAAAAAjE/6wSIfOwOYc8/clip_image002_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;481&quot; height=&quot;159&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;In the TEST CONNECTION button to add the following code:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TcllIEkLqxI/AAAAAAAAAjI/5wArrXIfTG4/s1600-h/clip_image004%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;CONNECTION TO DATABASE, metadata&quot; border=&quot;0&quot; alt=&quot;CONNECTION TO DATABASE, metadata&quot; src=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TcllJvrJoDI/AAAAAAAAAjM/i2l3kI3XPDA/clip_image004_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;455&quot; height=&quot;149&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Adding libraries to the project in a way MYSQL, right-click Libraries choose AddLibrary&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh6.ggpht.com/_s6zYtUnPIY4/TcllK1h9-KI/AAAAAAAAAjQ/ht2Q5-MX0KA/s1600-h/clip_image006%5B3%5D.jpg&quot;&gt;&lt;img title=&quot;CONNECTION TO DATABASE, metadata&quot; border=&quot;0&quot; alt=&quot;CONNECTION TO DATABASE, metadata&quot; src=&quot;http://lh4.ggpht.com/_s6zYtUnPIY4/TcllMosAUbI/AAAAAAAAAjU/OzC3hAEz1rE/clip_image006_thumb.jpg?imgmax=800&quot; width=&quot;217&quot; height=&quot;234&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Selection dialog will appear as follows:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh6.ggpht.com/_s6zYtUnPIY4/TcllOYTjmJI/AAAAAAAAAjY/_PwCe4vyL_0/s1600-h/clip_image008%5B3%5D.jpg&quot;&gt;&lt;img title=&quot;CONNECTION TO DATABASE, metadata&quot; border=&quot;0&quot; alt=&quot;CONNECTION TO DATABASE, metadata&quot; src=&quot;http://lh4.ggpht.com/_s6zYtUnPIY4/TcllPpcogXI/AAAAAAAAAjc/5EdGBrvosYA/clip_image008_thumb.jpg?imgmax=800&quot; width=&quot;244&quot; height=&quot;227&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Select the MySQL JDBC Driver, and click the Add Library.   &lt;br /&gt;Run.    &lt;br /&gt;Example 2.    &lt;br /&gt;If the project that we make involve many forms, and each form must connect to the database, it would be better if the connection is made ​​in a separate class so that wedo not need to write the connection process again and again.    &lt;br /&gt;Create a project, add the Form as in Example 1 as follows:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TcllRB13r6I/AAAAAAAAAjg/Ic3CNeKCLlA/s1600-h/clip_image010%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image010&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh3.ggpht.com/_s6zYtUnPIY4/TcllWMnFwtI/AAAAAAAAAjk/xmmYUtTVC1k/clip_image010_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;474&quot; height=&quot;165&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;In this project also add an object class (Select the Java Class, not the Java Form), andcreate a constructor in class for the connection process as follows:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh6.ggpht.com/_s6zYtUnPIY4/TcllYo4yeRI/AAAAAAAAAjo/6m4On7oUDo0/s1600-h/clip_image012%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image012&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh6.ggpht.com/_s6zYtUnPIY4/TcllZx0pgaI/AAAAAAAAAjs/Z8l04Sns97A/clip_image012_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;491&quot; height=&quot;162&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;In the form that had previously designed to add the following event CONNECTIONTEST button, and run.&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TcllbX5SplI/AAAAAAAAAjw/pstOQ9gppJc/s1600-h/clip_image014%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image014&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh4.ggpht.com/_s6zYtUnPIY4/TcllchzMcdI/AAAAAAAAAj0/NoOBo7BTEbQ/clip_image014_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;488&quot; height=&quot;77&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Example 3   &lt;br /&gt;Process connection can also be placed in a different package with the form.    &lt;br /&gt;Create a new project, add a form similar to Example 1 and Example 2 earlier.&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh3.ggpht.com/_s6zYtUnPIY4/Tclldkfv3mI/AAAAAAAAAj4/JVhK9YCoM_8/s1600-h/clip_image016%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image016&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TcllfVnmVTI/AAAAAAAAAj8/ybYmpbG5pKs/clip_image016_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;480&quot; height=&quot;127&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;At the Source Package, Right-click the package name is the same with your project,select New à Java Package&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh4.ggpht.com/_s6zYtUnPIY4/TcllgsVsLJI/AAAAAAAAAkA/gyHbZGPkIJM/s1600-h/clip_image018%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image018&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh4.ggpht.com/_s6zYtUnPIY4/TclliCjS5RI/AAAAAAAAAkE/ZE7gN1dYI4I/clip_image018_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;495&quot; height=&quot;278&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Dialog will appear to fill in the name of the package. Replace newpackage with data.Click the Finish button.&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TclljFnfpyI/AAAAAAAAAkI/TVZyUs6Ofo4/s1600-h/clip_image020%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image020&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh6.ggpht.com/_s6zYtUnPIY4/Tcllka4Tn5I/AAAAAAAAAkM/9El8ZIhcpoE/clip_image020_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;434&quot; height=&quot;97&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;    &lt;/p&gt;  &lt;p&gt;Will form a new package by name tigakoneksi.data can be seen as follows:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TclllZ3Ow8I/AAAAAAAAAkQ/_Y68XRZKdAE/s1600-h/clip_image022%5B3%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image022&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh4.ggpht.com/_s6zYtUnPIY4/Tcllmmv855I/AAAAAAAAAkU/ttpkEYpPq-I/clip_image022_thumb.jpg?imgmax=800&quot; width=&quot;219&quot; height=&quot;217&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Right-click the new package, add a Java Class object, write the following code:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TclloJmz9KI/AAAAAAAAAkY/G3UAEyxKdDU/s1600-h/clip_image024%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image024&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh6.ggpht.com/_s6zYtUnPIY4/TcllpaOD5KI/AAAAAAAAAkc/TyP-9R5cDQY/clip_image024_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;470&quot; height=&quot;152&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;In draft form, add the following event for the button CONNECTION TEST 2:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TcllqR86EvI/AAAAAAAAAkg/Fd82_VfjDKY/s1600-h/clip_image026%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image026&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TcllrS8GClI/AAAAAAAAAkk/43Lcv1jH9L4/clip_image026_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;476&quot; height=&quot;83&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;If the error sign appears, right click on the lines of program code, select Fix Imports.Will automatically add the name of a new package that we have the following:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh3.ggpht.com/_s6zYtUnPIY4/Tclls5mWnhI/AAAAAAAAAko/E0D4NW_6VNA/s1600-h/clip_image028%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image028&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh4.ggpht.com/_s6zYtUnPIY4/TcllucxVWCI/AAAAAAAAAks/o0JmmGs13Ww/clip_image028_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;481&quot; height=&quot;117&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Run.   &lt;br /&gt;Metadata DATABASE    &lt;br /&gt;Metadata à data about data    &lt;br /&gt;Interface used:    &lt;br /&gt;Interface Connection    &lt;br /&gt;Method:    &lt;br /&gt;Statement createStatement ()    &lt;br /&gt;à create a Statement object (interface Statement) to send commands to the database query    &lt;br /&gt;DatabaseMetaData getMetaData ()    &lt;br /&gt;à get the metadata that is stored to the object DatabaseMetaData (DatabasemetaData interface) from an existing database on the Connection object.    &lt;br /&gt;DatabaseMetaData Interface    &lt;br /&gt;Method:    &lt;br /&gt;GetTables ResultSet (String catalog, String schema, String tablename, String [] type)    &lt;br /&gt;à find out information from the database tables that exist in the metadata    &lt;br /&gt;DatabaseMetaData.    &lt;br /&gt;GetColumns ResultSet (String catalog, String schema, String tablename, String nmcolumn)    &lt;br /&gt;à know the names of a table from the database field whose metadata is in    &lt;br /&gt;DatabaseMetaData.    &lt;br /&gt;ResultSet Interface    &lt;br /&gt;Method:    &lt;br /&gt;String getString (String nmcolumn)    &lt;br /&gt;à take the value of the designated column from a ResultSet    &lt;br /&gt;Metadata from a database:    &lt;br /&gt;1. Get metadata from the connection and save it to DatabaseMetaData    &lt;br /&gt;DatabaseMetaData dbmd = con.getMetaData ();    &lt;br /&gt;2. Get information from databasemetadata table with the function and save it to a ResultSet getTables    &lt;br /&gt;String [] type = {&amp;quot;TABLE&amp;quot;};    &lt;br /&gt;ResultSet rs = dbmd.getTables (null, null, null, type);    &lt;br /&gt;3. Show information of each table with a loop (rs.next ()) as follows:    &lt;br /&gt;a. Find the name of table    &lt;br /&gt;String nm_tbl = rs.getString (&amp;quot;TABLE_NAME&amp;quot;);    &lt;br /&gt;b. Find a table structure    &lt;br /&gt;rs1 = dbmd.getColumns (null, null, nm_tbl, null);    &lt;br /&gt;c. Show the structure of each table with a loop (rs1.next ()) as follows:    &lt;br /&gt;String nm_field = rs1.getString (&amp;quot;COLUMN_NAME&amp;quot;);    &lt;br /&gt;String tp_field = rs1.getString (&amp;quot;TYPE_NAME&amp;quot;);    &lt;br /&gt;String lb_field = rs1.getString (&amp;quot;COLUMN_SIZE&amp;quot;);    &lt;br /&gt;Examples    &lt;br /&gt;Displays the name of all tables in the database.    &lt;br /&gt;Create a new project, add the object form with the draft as follows:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh3.ggpht.com/_s6zYtUnPIY4/TcllvcfcV7I/AAAAAAAAAkw/fkKR3DnnXq8/s1600-h/clip_image030%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image030&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TcllyOfPpAI/AAAAAAAAAk0/aMevlPbMv24/clip_image030_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;459&quot; height=&quot;169&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;In the model properties (JTable) turned into a Custom Code.   &lt;br /&gt;Add a new package, in this package add the Java Class object, write code to connect to the database.    &lt;br /&gt;Write the following instructions are also on the source form above.&lt;/p&gt;    &lt;p&gt;&lt;a href=&quot;http://lh3.ggpht.com/_s6zYtUnPIY4/Tcllz47-ZTI/AAAAAAAAAk4/jAygpDhavGQ/s1600-h/clip_image032%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;clip_image032&quot; border=&quot;0&quot; alt=&quot;KONEKSI KE DATABASE, METADATA&quot; src=&quot;http://lh4.ggpht.com/_s6zYtUnPIY4/Tcll1uVIhOI/AAAAAAAAAk8/yjC5Z62T2N4/clip_image032_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;472&quot; height=&quot;289&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Run, will be obtained as follows:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/Tcll2k318aI/AAAAAAAAAlA/Jzp7P8VTx1A/s1600-h/clip_image034%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;CONNECTION TO DATABASE, metadata&quot; border=&quot;0&quot; alt=&quot;CONNECTION TO DATABASE, metadata&quot; src=&quot;http://lh4.ggpht.com/_s6zYtUnPIY4/Tcll30oPbXI/AAAAAAAAAlE/pif6r1blyUk/clip_image034_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;422&quot; height=&quot;210&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Metadata from a ResultSet   &lt;br /&gt;Interface is involved:    &lt;br /&gt;Interface Statement    &lt;br /&gt;Method:    &lt;br /&gt;ResultSet executeQuery (String sql)    &lt;br /&gt;à execution that produces a ResultSet query (Query SELECT)    &lt;br /&gt;ResultSet Interface    &lt;br /&gt;Method:    &lt;br /&gt;ResultSetMetaData getMetaData ()    &lt;br /&gt;à get the ResultSet metadata.    &lt;br /&gt;Interface ResultSetMetaData    &lt;br /&gt;Method:    &lt;br /&gt;getColumnCount int ()    &lt;br /&gt;à get the number of columns of a ResultSet    &lt;br /&gt;String getTableName (int i)    &lt;br /&gt;àmendapatkan table name    &lt;br /&gt;String getColumnName (int i)    &lt;br /&gt;à get the column names to i    &lt;br /&gt;String getColumnTypeName (int i)    &lt;br /&gt;à get the column type to i    &lt;br /&gt;Steps to get the metadata ResultSet:    &lt;br /&gt;1. Make a Statement    &lt;br /&gt;Statement STT = con.createStatement ();    &lt;br /&gt;2. Get the ResultSet (query execution)    &lt;br /&gt;String sql = &amp;quot;Select * from nm_tbl&amp;quot;;    &lt;br /&gt;ResultSet rs = stt.executeQuery (sql);    &lt;br /&gt;3. Get metadata    &lt;br /&gt;ResultSetMetaData RSMD = rs.getMetaData ();    &lt;br /&gt;4. Get number of columns    &lt;br /&gt;int j = rsmd.getColumnCount ();    &lt;br /&gt;5. Get table name    &lt;br /&gt;String nm_tbl = rsmd.getTableName (index);    &lt;br /&gt;6. Get field names and types, with a looping    &lt;br /&gt;for (int i = 1; i &amp;lt;= j; i + +)    &lt;br /&gt;String nm_field = rsmd.getColumnName (i);    &lt;br /&gt;String tp_field = rsmd.getColumnTypeName (i);    &lt;br /&gt;Examples    &lt;br /&gt;On an existing project, add a form with the draft as follows:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh4.ggpht.com/_s6zYtUnPIY4/Tcll41i3VrI/AAAAAAAAAlI/lvX0wgr5rSQ/s1600-h/clip_image036%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;CONNECTION TO DATABASE, metadata&quot; border=&quot;0&quot; alt=&quot;CONNECTION TO DATABASE, metadata&quot; src=&quot;http://lh3.ggpht.com/_s6zYtUnPIY4/Tcll6pWjyBI/AAAAAAAAAlM/N4HZ-D_Ow9U/clip_image036_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;418&quot; height=&quot;252&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;At The OK button, enter the following code&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh3.ggpht.com/_s6zYtUnPIY4/Tcll8Xg4mkI/AAAAAAAAAlQ/p6N7dJafXUA/s1600-h/clip_image038%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;CONNECTION TO DATABASE, metadata&quot; border=&quot;0&quot; alt=&quot;CONNECTION TO DATABASE, metadata&quot; src=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/Tcll-MMLz8I/AAAAAAAAAlU/nWR3WrVhcF8/clip_image038_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;422&quot; height=&quot;279&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Run, will be obtained as follows:&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/Tcll_fMGF7I/AAAAAAAAAlY/-t-rH6Ek-Zc/s1600-h/clip_image040%5B4%5D.jpg&quot;&gt;&lt;img title=&quot;CONNECTION TO DATABASE, metadata&quot; border=&quot;0&quot; alt=&quot;CONNECTION TO DATABASE, metadata&quot; src=&quot;http://lh5.ggpht.com/_s6zYtUnPIY4/TclmBPLz8MI/AAAAAAAAAlc/WSGubkDA5JY/clip_image040_thumb%5B1%5D.jpg?imgmax=800&quot; width=&quot;419&quot; height=&quot;231&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;end&lt;/p&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/2746279739903494319/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/05/connection-to-database-metadata.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/2746279739903494319'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/2746279739903494319'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/05/connection-to-database-metadata.html' title='CONNECTION TO DATABASE, metadata'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/_s6zYtUnPIY4/TcllG3qfeFI/AAAAAAAAAjE/6wSIfOwOYc8/s72-c/clip_image002_thumb%5B1%5D.jpg?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-8901974999151256164</id><published>2011-05-19T13:17:00.001+07:00</published><updated>2011-05-19T13:18:01.693+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="java"/><title type='text'>What is &amp;quot;JAVA&amp;quot;?</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/05/what-is.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;Among the many existing software, we often hear the term Java, called Java or J2ME (Java 2 Micro Edition), which is derived from the Java language, where its functions focused on making applications to the mobile environment.    &lt;br /&gt;Java is a software technology that in it includes a programming language. In addition, Java also is a platform that has a virtual machine and libraries needed to write and run a program.     &lt;br /&gt;Java Initially developed in the computer environment by Sun Microsystems Inc. with the aim to produce a simple computer language without having attached to a specific architecture.     &lt;br /&gt;In 1995 Sun released a Java-based browser with the nickname of Hot Java, and subsequently decided to make Netscape&#39;s browser equipped with Java language.     &lt;br /&gt;Afterwards, join them too many reputable developers IBM and Microsoft.     &lt;br /&gt;The following year, Sun Microsystems Inc.. release of the Java Software Development Kit (JDK) first, which is JDK 1.1. Then continue to develop the programming that runs the applet in the browser into a world-class programming that is widely used for the development of a variety of applications.     &lt;br /&gt;The Java programming language itself broadly grouped into 3, namely Java 2 Standard Edition (J2SE), Java 2 Enterprise Edition (J2EE) and Java 2 Micro Edition (J2ME).     &lt;br /&gt;J2SE is used to develop desktop applications and applets.     &lt;br /&gt;J2EE is used to develop applications based on client / server enterprise scale.     &lt;br /&gt;And J2ME applied to a variety of small devices with the amount of memory, storage capacity and limited user interface, such as mobile phones and PDAs.     &lt;br /&gt;Until now there are two versions of the Java J2ME platform which is commonly used in the MIDP 1.0 mobile phones that still have a simple specification and provide basic functionality for mobile applications, including basic user interface and network security. And MIDP 2.0 which has added a variety of facilities such as gaming, multimedia, support various types of connectivity, as well as OTA.     &lt;br /&gt;Excerpted from various sources.     &lt;br /&gt;by www.zahroel.co.cc &lt;/p&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/8901974999151256164/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/05/what-is.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/8901974999151256164'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/8901974999151256164'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/05/what-is.html' title='What is &amp;quot;JAVA&amp;quot;?'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-513060181174543938</id><published>2011-05-11T15:48:00.000+07:00</published><updated>2011-05-11T15:52:01.169+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="css"/><title type='text'>Creating a blog using CSS menus</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/05/creating-blog-using-css-menus.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiIFpgwGQMR1WoFKSf09xwz6Tf71Tr391IDCJFLeGB6SOlvs5i_bqiinyMuMf4BYG1dVSVdxf5rr1JholDlQ1LcyiT_GZbP5CxDFrhh0LHihzCe_DyrcOw4Yol3nXi7zYawHGrSr5YsNsk/s1600-h/CSS.JPG&quot;&gt;&lt;img style=&quot;background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px&quot; title=&quot;CSS&quot; border=&quot;0&quot; alt=&quot;CSS&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8PlVkMNie8T2Wp1afHN66zP6aj7ICh-75g7jg2n1fmSso_DnyJXmH5djjNYgJAmbzshPehVbQchb-slMUHTSG8TYRez5kjeS7Kk52BB6Un0SFJN1Xzzzc1uJfIU2EChRtLbru0zPRWXo/?imgmax=800&quot; width=&quot;112&quot; height=&quot;112&quot; /&gt;&lt;/a&gt;  &lt;h3&gt;Before there is such thing as CSS code, the navigation menu created by using tables with HTML code. Whether it be horizontal or vertical menu. In fact, to make a website layout still use tables. Well ... if you&#39;ve no time now to make a navigation menu with table had no other way is by using CSS code. Here&#39;s the ropes and hopefully can be understood .........    &lt;br /&gt;Creating a blog using CSS menus     &lt;br /&gt;Before starting, please note that in order to place the CSS code in a blog that is must be between &amp;lt;head&amp;gt; tag and &amp;lt;/ head&amp;gt;. Or to be more easily, keep the above code     &lt;br /&gt;]]&amp;gt;&amp;lt;/ B: skin&amp;gt;     &lt;br /&gt;&amp;lt;/ Head&amp;gt;     &lt;br /&gt;Ok .... immediately wrote to how to create CSS code for menu navigation.     &lt;br /&gt;First you must create a first code tag css for the navigation menu settings. See the code below:     &lt;br /&gt;# Menu     &lt;br /&gt;{     &lt;br /&gt;margin-bottom: 10px;     &lt;br /&gt;height: 29px;     &lt;br /&gt;background: transparent;     &lt;br /&gt;padding: 0px 0;     &lt;br /&gt;}     &lt;br /&gt;Then, create a CSS code to change the default format for ul and li tags     &lt;br /&gt;# Menu ul     &lt;br /&gt;{     &lt;br /&gt;margin: 0;     &lt;br /&gt;padding: 7px;     &lt;br /&gt;height: 29px;     &lt;br /&gt;text-align: center;     &lt;br /&gt;}     &lt;br /&gt;# Menu ul li     &lt;br /&gt;{     &lt;br /&gt;list-style: none;     &lt;br /&gt;display: inline;     &lt;br /&gt;}     &lt;br /&gt;The purpose of the CSS code above is to change the format tag ul from vertical to horizontal and set the margin and padding for each menu navigation. Next, make a CSS code to create a variety of links from the navigation menu. code:     &lt;br /&gt;# Menu ul li a: link, # menu ul li a: active, # menu ul li a: visited     &lt;br /&gt;{     &lt;br /&gt;color: white;     &lt;br /&gt;margin-bottom: 4px;     &lt;br /&gt;padding: 13px 13px 7px 7px;     &lt;br /&gt;font-size: 1em;     &lt;br /&gt;font-family: &#39;lucida grande&#39;, arial, sans-serif;     &lt;br /&gt;font-weight: bold;     &lt;br /&gt;text-decoration: yes;     &lt;br /&gt;background: url (http://i283.photobucket.com/albums/kk315/     &lt;br /&gt;meezanx_2008/menu.gif) repeat-x;     &lt;br /&gt;background-position: center;     &lt;br /&gt;}     &lt;br /&gt;# Menu ul li a: hover     &lt;br /&gt;{     &lt;br /&gt;color: white;     &lt;br /&gt;}     &lt;br /&gt;Well ..... the above code is a tutorial that all CSS code mebuat navigation menu. For more details and how to save tersbut code in your blog template follow these steps:     &lt;br /&gt;* Log in to Blogger and then select and edit the HTML layout     &lt;br /&gt;* For security please download your template first     &lt;br /&gt;* Remember .... Do not give a checklist on the box Expand Widget Templates.     &lt;br /&gt;* Find the following code:     &lt;br /&gt;]]&amp;gt;&amp;lt;/ B: skin&amp;gt;     &lt;br /&gt;&amp;lt;/ Head&amp;gt;     &lt;br /&gt;* If you have found. please copy and paste the following code above the HTML code earlier     &lt;br /&gt;# Menu     &lt;br /&gt;{     &lt;br /&gt;margin-bottom: 10px;     &lt;br /&gt;height: 29px;     &lt;br /&gt;background: transparent;     &lt;br /&gt;padding: 0px 0;     &lt;br /&gt;}     &lt;br /&gt;# Menu ul     &lt;br /&gt;{     &lt;br /&gt;margin: 0;     &lt;br /&gt;padding: 7px;     &lt;br /&gt;height: 29px;     &lt;br /&gt;text-align: center;     &lt;br /&gt;}     &lt;br /&gt;# Menu ul li     &lt;br /&gt;{     &lt;br /&gt;list-style: none;     &lt;br /&gt;display: inline;     &lt;br /&gt;}     &lt;br /&gt;# Menu ul li a: link, # menu ul li a: active, # menu ul li a: visited     &lt;br /&gt;{     &lt;br /&gt;color: white;     &lt;br /&gt;margin-bottom: 4px;     &lt;br /&gt;padding: 13px 13px 7px 7px;     &lt;br /&gt;font-size: 1em;     &lt;br /&gt;font-family: &#39;lucida grande&#39;, arial, sans-serif;     &lt;br /&gt;font-weight: bold;     &lt;br /&gt;text-decoration: yes;     &lt;br /&gt;background:     &lt;br /&gt;url (http://i283.photobucket.com/albums/kk315/meezanx_2008/menu.gif)     &lt;br /&gt;repeat-x;     &lt;br /&gt;background-position: center;     &lt;br /&gt;}     &lt;br /&gt;# Menu ul li a: hover     &lt;br /&gt;{     &lt;br /&gt;color: white;     &lt;br /&gt;}     &lt;br /&gt;* After finishing his copy and paste, locate the following code:     &lt;br /&gt;&amp;lt;div id=&#39;content-wrapper&#39;&#39;&amp;gt;     &lt;br /&gt;* If you have found (have to) copy the following code above the html code     &lt;br /&gt;&amp;lt;! - START MENU -&amp;gt;     &lt;br /&gt;&amp;lt;div id=&#39;menu&#39;&amp;gt;     &lt;br /&gt;&amp;lt;div style=&#39;display:none;&#39;&amp;gt;     &lt;br /&gt;&amp;lt;img alt=&#39;preload&#39; src=&#39;menuon.png&#39;/&amp;gt;     &lt;br /&gt;&amp;lt;/ Div&amp;gt;     &lt;br /&gt;&amp;lt;ul&amp;gt;     &lt;br /&gt;&amp;lt;li&amp;gt; &amp;lt;a href=&#39;URL ANDA&#39; target=&#39;_blank&amp;quot;&amp;gt; Your Text &amp;lt;/ a&amp;gt; &amp;lt;/ li&amp;gt;     &lt;br /&gt;&amp;lt;li&amp;gt; &amp;lt;a href=&#39;URL ANDA&#39; target=&#39;_blank&amp;quot;&amp;gt; Your Text &amp;lt;/ a&amp;gt; &amp;lt;/ li&amp;gt;     &lt;br /&gt;&amp;lt;li&amp;gt; &amp;lt;a href=&#39;URL ANDA&#39; target=&#39;_blank&amp;quot;&amp;gt; Your Text &amp;lt;/ a&amp;gt; &amp;lt;/ li&amp;gt;     &lt;br /&gt;&amp;lt;li&amp;gt; &amp;lt;a href=&#39;URL ANDA&#39; target=&#39;_blank&amp;quot;&amp;gt; Your Text &amp;lt;/ a&amp;gt; &amp;lt;/ li&amp;gt;     &lt;br /&gt;&amp;lt;/ Ul&amp;gt;     &lt;br /&gt;&amp;lt;/ Div&amp;gt;     &lt;br /&gt;&amp;lt;! - END MENU -&amp;gt;     &lt;br /&gt;Important Note:     &lt;br /&gt;1. CHANGE YOUR URL to link your purpose and your Text with the name of each - each link. See How to Make Link.     &lt;br /&gt;2. If you understand the CSS code, CSS code you can replace him, according to your needs.     &lt;br /&gt;If it is completed, save the template.&lt;/h3&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/513060181174543938/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/05/creating-blog-using-css-menus.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/513060181174543938'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/513060181174543938'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/05/creating-blog-using-css-menus.html' title='Creating a blog using CSS menus'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8PlVkMNie8T2Wp1afHN66zP6aj7ICh-75g7jg2n1fmSso_DnyJXmH5djjNYgJAmbzshPehVbQchb-slMUHTSG8TYRez5kjeS7Kk52BB6Un0SFJN1Xzzzc1uJfIU2EChRtLbru0zPRWXo/s72-c?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-6448762478409183345</id><published>2011-05-07T00:48:00.000+07:00</published><updated>2011-05-07T01:05:06.396+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="visual basic"/><title type='text'>make a list and add to the</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/05/make-list-and-add-to.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;want to make like this? list, add, series, send, clear, sum, sequence, etc&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjg-YPKTNTbvrBwdvU-2v5hMzKVirtK8ByKSbAlbzLA8_Fuhlt85zHgowFiMotbZGPEE-wWObYUCpRTN478wpz8UYeMtBqEF2raNC6DXE9MDIJt32wxfbDM1f-GQ5OGVlTmaCRGQG6eGwM/s1600-h/list001%5B3%5D.jpg&quot;&gt;&lt;img style=&quot;background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px&quot; title=&quot;list001&quot; border=&quot;0&quot; alt=&quot;list, add&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhU2dZlVEF5DzTw2stDy2U-uP-Z8Sj5-tJhMF3HXZKPiwmO7EvvfmuJK0J-lmclVl0HIaNJrgQGylEiuQkxqP3WalZChH67chJJfh-4DxzAWjjBVrpCfjYb5TE9_abWFuUTQLXEuSYL5Io/?imgmax=800&quot; width=&quot;528&quot; height=&quot;421&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;a name=&#39;more&#39;&gt;&lt;/a&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi0CjNCb3agX1olTtuOelhqXFh7QUXBSqnkQOnOdomta_vrDZWi5tEtfRW0AtFCk6GGu2Y4gnKzIXhrvLPWXp4VQTSaLheqptTk3ntbyvGY-PZ2QAheFGvAN2G5VwAGuKVA5VXA0kT0koQ/s1600-h/list004%5B4%5D.jpg&quot;&gt;&lt;img style=&quot;background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px&quot; title=&quot;list004&quot; border=&quot;0&quot; alt=&quot;list004&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiTQf7CTs22fivEK66EwHraYBdm7gQhhi3N0baifMmXkf10ZsA9I6NuW5HqL2KshGmmn_Qd-fEKMsuoQ6x0NseUEJvsfkJSAwCkGVkoSw8oxVtFjqn5Bstjc2wKbRfV4nmrzQBvDgXs4tE/?imgmax=800&quot; width=&quot;521&quot; height=&quot;323&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;This exciting program, you can implement this program in good time. This program is very useful for the novice user visual basic&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;Private Sub Command1_Click()&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;Dim i As Integer&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;Dim stat As Boolean&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;stat = True&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;For i = 0 To List1.ListCount - 1&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;If List1.List(i) = Text1.Text Then&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;stat = False&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;Exit For&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;End If&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;stat = True&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;Next&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;If stat = True Then&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;List1.AddItem (Text1.Text)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;Else&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;MsgBox &amp;quot;existing&amp;quot;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;End If&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;Text1.Text = &amp;quot;&amp;quot;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;Label1.Caption = &amp;quot;Jumlah: &amp;quot; &amp;amp; List1.ListCount&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ff0000&quot;&gt;End Sub&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffc000&quot;&gt;Private Sub Command2_Click()&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffc000&quot;&gt;List2.AddItem List1.List(List1.ListIndex)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffc000&quot;&gt;List1.RemoveItem (List1.ListIndex)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffc000&quot;&gt;Label1.Caption = &amp;quot;Jumlah: &amp;quot; &amp;amp; List1.ListCount&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffc000&quot;&gt;Label4.Caption = &amp;quot;Jumlah: &amp;quot; &amp;amp; List2.ListCount&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffc000&quot;&gt;End Sub&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffff00&quot;&gt;Private Sub Command3_Click()&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffff00&quot;&gt;List1.AddItem List2.List(List2.ListIndex)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffff00&quot;&gt;List2.RemoveItem (List2.ListIndex)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffff00&quot;&gt;Label4.Caption = &amp;quot;Jumlah: &amp;quot; &amp;amp; List2.ListCount&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffff00&quot;&gt;Label1.Caption = &amp;quot;Jumlah: &amp;quot; &amp;amp; List1.ListCount&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#ffff00&quot;&gt;End Sub&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#00ff00&quot;&gt;Private Sub Command4_Click()&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#00ff00&quot;&gt;List1.Clear&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#00ff00&quot;&gt;Label1.Caption = &amp;quot;Jumlah: &amp;quot; &amp;amp; List1.ListCount&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#00ff00&quot;&gt;End Sub&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#00ff00&quot;&gt;Private Sub Command5_Click()&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#00ff00&quot;&gt;List2.Clear&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#00ff00&quot;&gt;Label4.Caption = &amp;quot;Jumlah: &amp;quot; &amp;amp; List2.ListCount&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#00ff00&quot;&gt;End Sub&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font style=&quot;background-color: #0000ff&quot; color=&quot;#0000ff&quot;&gt;&lt;/font&gt;&lt;font color=&quot;#0000ff&quot;&gt;Private Sub List1_Click()&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#0000ff&quot;&gt;Label2.Caption = List1.List(List1.ListIndex)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#0000ff&quot;&gt;Label3.Caption = &amp;quot;Urutan: &amp;quot; &amp;amp; List1.ListIndex + 1&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#0000ff&quot;&gt;End Sub&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#0000ff&quot;&gt;Private Sub List2_Click()&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#0000ff&quot;&gt;Label5.Caption = List2.List(List2.ListIndex)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#0000ff&quot;&gt;Label6.Caption = &amp;quot;Urutan: &amp;quot; &amp;amp; List2.ListIndex + 1&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color=&quot;#0000ff&quot;&gt;End Sub&lt;/font&gt;&lt;font style=&quot;background-color: #0000ff&quot; color=&quot;#0000ff&quot;&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;      &lt;blockquote&gt;   &lt;p&gt;note : &lt;/p&gt;    &lt;p&gt;jumlah = sum&lt;/p&gt;    &lt;p&gt;urutan = sequence&lt;/p&gt;&lt;/blockquote&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/6448762478409183345/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/05/make-list-and-add-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/6448762478409183345'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/6448762478409183345'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/05/make-list-and-add-to.html' title='make a list and add to the'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhU2dZlVEF5DzTw2stDy2U-uP-Z8Sj5-tJhMF3HXZKPiwmO7EvvfmuJK0J-lmclVl0HIaNJrgQGylEiuQkxqP3WalZChH67chJJfh-4DxzAWjjBVrpCfjYb5TE9_abWFuUTQLXEuSYL5Io/s72-c?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-4122710679749222095</id><published>2011-05-06T08:32:00.000+07:00</published><updated>2011-05-06T08:33:59.130+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="css"/><title type='text'>CSS (CASCADING STYLE SHEET)</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/05/css-cascading-style-sheet.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjxmJO1J0vG9FIhTyIPB2meVfvrAQMZjiosJfdju_R0-chJftQuy2UsUj1mhYgcFiu1GzhtVfFn_uowS9HFwpCyTcpSpkCcVfqcRjlF5PT2xgTZja_OlT6qm_BoxHYiGI7NKctY79idhhU/s1600-h/css%5B2%5D.png&quot;&gt;&lt;img style=&quot;background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px&quot; title=&quot;css&quot; border=&quot;0&quot; alt=&quot;css&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWfJzurcZEbpQ6E3V6ZmqHkq32FQ83OYWnCKltsgKnYhj1OGthN1TdX379V1zAsSX2-mYEIMsXTnhKaupcO4MRbhC3inMV7AQDtJ38GgOn4ZSdM-m9a5V5gv_ewcM_kToBWyg5M1-US2Y/?imgmax=800&quot; width=&quot;244&quot; height=&quot;244&quot; /&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;1. Introduction to CSS&lt;/strong&gt;     &lt;br /&gt;Cascading Style Sheets is a technology used to beautify     &lt;br /&gt;website page views (the site). With the overall color and CSS Method     &lt;br /&gt;display in a web site can be converted / reformatted quickly. CSS also     &lt;br /&gt;been in standartkan by the World Wide Web Consortium (W3C) for use on the web     &lt;br /&gt;browser.     &lt;br /&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;blink&gt;Writing CSS        &lt;br /&gt;&amp;lt;style Type=&amp;quot;text/css&amp;quot;&amp;gt;         &lt;br /&gt;... CSS ...         &lt;br /&gt;&amp;lt;/ STYLE&amp;gt;&lt;blink&gt;&lt;/blink&gt;&lt;/blink&gt;      &lt;blockquote&gt;       &lt;p&gt;         &lt;br /&gt;Example:           &lt;br /&gt;&amp;lt;h1 style=&amp;quot;color:red;&amp;quot;&amp;gt; Red, hahaha ...&amp;lt;/ h1&amp;gt; &lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;       &lt;br /&gt;&lt;strong&gt;2. The terms in the Style Sheet&lt;/strong&gt;         &lt;br /&gt;Style rules         &lt;br /&gt;Cascading style sheets is a collection of rules that define         &lt;br /&gt;style from the document. As an example we can create the style rules         &lt;br /&gt;determine that all &amp;lt;H2&amp;gt; display with the color orange.         &lt;br /&gt;Style sheets         &lt;br /&gt;Style sheets can be embedded into HTML document. Or called         &lt;br /&gt;embedded style sheet. Style sheets can also be made as an external file         &lt;br /&gt;and the link to an HTML document. Style roles can be wearing on the         &lt;br /&gt;of a certain web page. For example you can determine         &lt;br /&gt;certain paragraphs in the show with bold and italic style while         &lt;br /&gt;others remain as usual.         &lt;br /&gt;Selector         &lt;br /&gt;property1 {selector: value, property2: value,. . .}         &lt;br /&gt;h1 {color: green; background-color: orange;}&lt;/p&gt;      &lt;p&gt;Style sheets consist of two parts:        &lt;br /&gt;1. Selector         &lt;br /&gt;The first part before the &amp;quot;{}&amp;quot; is called selector         &lt;br /&gt;2. Declaration         &lt;br /&gt;Consisting of the property and its value.         &lt;br /&gt;3. Use the style element         &lt;br /&gt;Let&#39;s start by setting the font color and background. You         &lt;br /&gt;can do this by using the style element to         &lt;br /&gt;set the character code tags of your document.         &lt;br /&gt;a. Inheritance (Inheritance):&lt;/p&gt;   &lt;/p&gt; &lt;/blockquote&gt;  &lt;a name=&#39;more&#39;&gt;&lt;/a&gt; &lt;blink&gt;&lt;blink&gt;     &lt;p&gt;&amp;#160;&lt;/p&gt;      &lt;p&gt;&amp;#160;&lt;/p&gt;      &lt;blockquote&gt;       &lt;p&gt;&amp;lt;html&amp;gt;         &lt;br /&gt;&amp;lt;head&amp;gt;          &lt;br /&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot; media=”all”&amp;gt;          &lt;br /&gt;b { color : green; }          &lt;br /&gt;&amp;lt;/style&amp;gt;          &lt;br /&gt;&amp;lt;/head&amp;gt;          &lt;br /&gt;&amp;lt;body&amp;gt;          &lt;br /&gt;&amp;lt;b&amp;gt;&lt;/p&gt;        &lt;p&gt;Q: Why, if we consider &amp;lt;font size=&amp;quot;+1&amp;quot;&amp;gt; a job &amp;lt;/ font&amp;gt; it easy         &lt;br /&gt;then the real work will become easier?          &lt;br /&gt;&amp;lt;br /&amp;gt;          &lt;br /&gt;A: Because it is a suggestion of ourselves. &amp;lt;/ b&amp;gt;          &lt;br /&gt;&amp;lt;/ body&amp;gt;          &lt;br /&gt;&amp;lt;/ html&amp;gt;&lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;&lt;strong&gt;b. Classes:          &lt;br /&gt;&lt;/strong&gt;This time we define two classes of &amp;quot;ask&amp;quot; and &amp;quot;responsibility&amp;quot; with         &lt;br /&gt;CSS rules apply. From here we can see kalu two classes should not         &lt;br /&gt;same and can be modified in accordance with the wishes and interests of our needs.&lt;/p&gt;      &lt;p&gt;&amp;#160;&lt;/p&gt;      &lt;blockquote&gt;       &lt;p&gt;&amp;lt;html&amp;gt;         &lt;br /&gt;&amp;lt;head&amp;gt;          &lt;br /&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot; media=”all”&amp;gt;          &lt;br /&gt;.question {color: red;}          &lt;br /&gt;.answer {color: blue;}          &lt;br /&gt;&amp;lt;/style&amp;gt;          &lt;br /&gt;&amp;lt;/head&amp;gt;          &lt;br /&gt;&amp;lt;body&amp;gt;          &lt;br /&gt;&amp;lt;p class=&amp;quot;question&amp;quot;&amp;gt;&lt;/p&gt;        &lt;p&gt;Q: Why if we deem it an easy job         &lt;br /&gt;then the real work will become easier?          &lt;br /&gt;&amp;lt;/ p&amp;gt;          &lt;br /&gt;&amp;lt;p class=&amp;quot;jawab&amp;quot;&amp;gt;          &lt;br /&gt;A: Because it is a suggestion CLASS=&amp;quot;tanya&amp;quot;&amp;gt; &amp;lt;FONT &amp;lt;/ FONT&amp;gt;          &lt;br /&gt;of ourselves          &lt;br /&gt;&amp;lt;/ p&amp;gt;          &lt;br /&gt;&amp;lt;/ body&amp;gt;          &lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;&lt;strong&gt;c. Contextual selector (Contextual-Selector)         &lt;br /&gt;&lt;/strong&gt;Contextual selector is similar to conditional statements -        &lt;br /&gt;Style-Sheet declaration that there will be an effect if the conditions / circumstances        &lt;br /&gt;encountered. For example, suppose you want to make all text bold and italic        &lt;br /&gt;performed with arial and blue letters.        &lt;br /&gt;Contextual selector, it will be like this:&lt;/p&gt;      &lt;p&gt;&amp;#160;&lt;/p&gt;      &lt;blockquote&gt;       &lt;p&gt;&amp;lt;head&amp;gt;         &lt;br /&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot; media=”all”&amp;gt;          &lt;br /&gt;b i {color: blue; font-family: Arial;}          &lt;br /&gt;/ * this selector all for bold + italic text * /&lt;/p&gt;        &lt;p&gt;&amp;lt;/style&amp;gt;         &lt;br /&gt;&amp;lt;/head&amp;gt;&lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;CSS offers a variety of ways to change the color. Is easiest        &lt;br /&gt;by using one of the pre-defined colors - aqua, black, blue,         &lt;br /&gt;fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow.         &lt;br /&gt;You can also use hexadecimal color combinations by adding         &lt;br /&gt;attribute # (sign Kreiss).         &lt;br /&gt;i {color: # 0000FF;)         &lt;br /&gt;Or the combination of RGB in the absolute value of percent, like this:         &lt;br /&gt;i {color: rgb (0, 0, 255);)         &lt;br /&gt;i {color: rgb (0%, 0%, 100%);)         &lt;br /&gt;We can change the color combination in accordance with the style that we like.&lt;/p&gt;      &lt;blockquote&gt;       &lt;p&gt;&amp;lt;html&amp;gt;         &lt;br /&gt;&amp;lt;head&amp;gt;          &lt;br /&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot; media=”all”&amp;gt;          &lt;br /&gt;.blue {color: cyan; background-color: #FF8000;}          &lt;br /&gt;.green {color: lime; background-color: black;}          &lt;br /&gt;&amp;lt;/style&amp;gt;          &lt;br /&gt;&amp;lt;/head&amp;gt;&lt;/p&gt;        &lt;p&gt;&amp;lt;body&amp;gt;         &lt;br /&gt;&amp;lt;p class=&amp;quot;blue&amp;quot;&amp;gt;          &lt;br /&gt;&lt;/p&gt;        &lt;p&gt;Actually all the work is easy! &lt;/p&gt;        &lt;p&gt;&amp;lt;/p&amp;gt;         &lt;br /&gt;&amp;lt;p class=&amp;quot;green&amp;quot;&amp;gt;          &lt;br /&gt;Agreed, but not as easy to say it ....          &lt;br /&gt;&amp;lt;/p&amp;gt;          &lt;br /&gt;&amp;lt;/body&amp;gt;          &lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;We can also add attributes format for the web we become more alive.       &lt;br /&gt;For example, changing the link color, font color add bold, italics, underline,        &lt;br /&gt;gives color to the textbox, textarea, scrollbar, and others.&lt;/p&gt;      &lt;blockquote&gt;       &lt;p&gt;&amp;lt;html&amp;gt;         &lt;br /&gt;&amp;lt;head&amp;gt;          &lt;br /&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot; media=”all”&amp;gt;          &lt;br /&gt;body { color: black; background: white; }          &lt;br /&gt;i, u { color: red; }          &lt;br /&gt;b { color : green; }          &lt;br /&gt;&amp;lt;/style&amp;gt;          &lt;br /&gt;&amp;lt;/head&amp;gt;          &lt;br /&gt;&amp;lt;body&amp;gt;&lt;/p&gt;        &lt;p&gt;Q: Why, if we consider &amp;lt;i&amp;gt; a job &amp;lt;/ i&amp;gt; it is easier then the job          &lt;br /&gt;real will become easier &amp;lt;b&amp;gt; &amp;lt;/ b&amp;gt;? &amp;lt;br /&amp;gt;           &lt;br /&gt;A: Because it is a suggestion &amp;lt;u&amp;gt; &amp;lt;/ u&amp;gt; to &amp;lt;b&amp;gt; ourselves &amp;lt;/ b&amp;gt;           &lt;br /&gt;&amp;lt;/ Body&amp;gt;           &lt;br /&gt;&amp;lt;/ Html&amp;gt;&lt;/p&gt;        &lt;p&gt;&amp;#160;&lt;/p&gt;     &lt;/blockquote&gt;      &lt;blockquote&gt;       &lt;p&gt;&amp;lt;html&amp;gt;          &lt;br /&gt;&amp;lt;head&amp;gt;           &lt;br /&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot; media=”all”&amp;gt;           &lt;br /&gt;.question {text-decoration: underline} /* garis bawah */           &lt;br /&gt;.answer {text-decoration: overline} /* garis atas text */           &lt;br /&gt;.repeat {text-decoration: line-through}/* garis melalui text */           &lt;br /&gt;.no-imagination {text-decoration: blink; font-weight: bolder}           &lt;br /&gt;/* text berkedip */           &lt;br /&gt;&amp;lt;/style&amp;gt;           &lt;br /&gt;&amp;lt;/head&amp;gt;           &lt;br /&gt;&amp;lt;body&amp;gt;           &lt;br /&gt;&amp;lt;p class=&amp;quot;question&amp;quot;&amp;gt;           &lt;br /&gt;Q. Kenapa why, tidak pernah never, selalu always ?           &lt;br /&gt;&amp;lt;/p&amp;gt;           &lt;br /&gt;&amp;lt;p class=&amp;quot;answer&amp;quot;&amp;gt;           &lt;br /&gt;A. Because Because always always sometime Sometimes?          &lt;br /&gt;&amp;lt;/p&amp;gt;           &lt;br /&gt;&amp;lt;p class=&amp;quot;repeat&amp;quot;&amp;gt;           &lt;br /&gt;Q. Do you know, who the funniest in Indonesia?           &lt;br /&gt;&amp;lt;/p&amp;gt;           &lt;br /&gt;&amp;lt;p class=&amp;quot;repeat&amp;quot;&amp;gt;           &lt;br /&gt;A. I Don’t know, Kasino and Indro.           &lt;br /&gt;&amp;lt;/p&amp;gt;           &lt;br /&gt;&amp;lt;p class=&amp;quot;no-imagination&amp;quot;&amp;gt;&lt;/p&gt;        &lt;p&gt;Haha???         &lt;br /&gt;&amp;lt;/p&amp;gt;          &lt;br /&gt;&amp;lt;/body&amp;gt;          &lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;        &lt;p&gt;&amp;#160;&lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;&lt;strong&gt;Watermark Concepts&lt;/strong&gt;        &lt;br /&gt;CSS also comes with properties that allow you to define how        &lt;br /&gt;how the background image (background) you in the show. First, property        &lt;br /&gt;&amp;quot;Background-image&amp;quot; allows you to specify a background image        &lt;br /&gt;for each HTML element.        &lt;br /&gt;If you require this background as a watermark, which can not        &lt;br /&gt;discroll when you to scroll down a page, you must add        &lt;br /&gt;property &amp;quot;background-attachment&amp;quot; - The values ​​accepted are &amp;quot;fixed&amp;quot; and &amp;quot;scroll&amp;quot;        &lt;br /&gt;You can also set a Yes / No its an image / images that pass through one        &lt;br /&gt;page with the property &amp;quot;background-repeat&amp;quot;.        &lt;br /&gt;This property may be taken one of four parts: a &amp;quot;repeat&amp;quot; (horizontal layout        &lt;br /&gt;and vertically), &amp;quot;repeat-x&amp;quot; (horizontal position only), &amp;quot;repeat-y&amp;quot; (location seacara        &lt;br /&gt;vertical only), and &amp;quot;no repeat&amp;quot; (no arrangement)        &lt;br /&gt;The examples below we take to indicate the keyword &amp;quot;repeat-y&amp;quot;, please try:&lt;/p&gt;      &lt;blockquote&gt;       &lt;p&gt;         &lt;br /&gt;&amp;lt;html&amp;gt;          &lt;br /&gt;&amp;lt;head&amp;gt;          &lt;br /&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot; media=”all”&amp;gt;          &lt;br /&gt;.question {font-size: 20pt; background-image:          &lt;br /&gt;url(&amp;quot;./letak_folder/bunga.gif&amp;quot;); background-repeat: repeat-y}          &lt;br /&gt;&amp;lt;/style&amp;gt;&lt;/p&gt;        &lt;p&gt;&amp;lt;/head&amp;gt;         &lt;br /&gt;&amp;lt;body&amp;gt;          &lt;br /&gt;&amp;lt;p class=&amp;quot;question&amp;quot;&amp;gt;          &lt;br /&gt;Q. Hmm ... turns out you now have to understand about the concept of a watermark?&lt;/p&gt;        &lt;p&gt;A. Yes, There Really is sir!&lt;/p&gt;        &lt;p&gt;&amp;lt;/p&amp;gt;         &lt;br /&gt;&amp;lt;/body&amp;gt;          &lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;Model format CSS berasumsi bahwa tiap-tiap elemen dikelilingi oleh tiga area yang       &lt;br /&gt;berbeda. Dimulai dari dalam keluar, area ini adalah padding, border, dan margin.        &lt;br /&gt;Masing-masing entitas ini dapat diatur melalui spesial properties CSS, mengijinkan para        &lt;br /&gt;developer untuk secara singkat mengatur tampilan dan posisi dari setiap elemen HTML.        &lt;br /&gt;Nilai margin (garis tepi) dapat kita atur besar dan letaknya melalui properti “margin-top”,        &lt;br /&gt;“margin-bottom”, “margin-right”, dan “margin-left”.&lt;/p&gt;      &lt;p&gt;&amp;#160;&lt;/p&gt;      &lt;blockquote&gt;       &lt;p&gt;&amp;lt;html&amp;gt;         &lt;br /&gt;&amp;lt;head&amp;gt; &amp;lt;/head&amp;gt;          &lt;br /&gt;&amp;lt;body&amp;gt;          &lt;br /&gt;&amp;lt;div style=&amp;quot;position: absolute; top:10; left:50; font-family: Verdana;          &lt;br /&gt;font-size: 35pt; color: green;&amp;quot;&amp;gt;          &lt;br /&gt;Q. Does everyone who reads this module already understand?&lt;/p&gt;        &lt;p&gt;&amp;lt;/div&amp;gt;         &lt;br /&gt;&amp;lt;div style=&amp;quot;position: absolute; top:140; left:300; font-family: Verdana;          &lt;br /&gt;font-size: 20pt; color: blue;&amp;quot;&amp;gt;          &lt;br /&gt;A. Belum Tentu!          &lt;br /&gt;&amp;lt;/div&amp;gt;          &lt;br /&gt;&amp;lt;div style=&amp;quot;position: absolute; top:180; left:50; letter-spacing:5px;&lt;/p&gt;        &lt;p&gt;font-family: Verdana; font-size: 33pt; color: red;&amp;quot;&amp;gt;         &lt;br /&gt;The ability of each individual is not necessarily the same.&lt;/p&gt;        &lt;p&gt;&amp;lt;/div&amp;gt;         &lt;br /&gt;&amp;lt;/body&amp;gt;          &lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;&amp;#160;&lt;/p&gt;      &lt;p&gt;&amp;#160;&lt;/p&gt;      &lt;p&gt;4. ORGANIZING FILE CSS       &lt;br /&gt;One of several technological prowess css is - and is the reason many people        &lt;br /&gt;Like its use - is to allow us to define a        &lt;br /&gt;global style sheet that can apply css rules to the overall        &lt;br /&gt;HTML documents on your pages.        &lt;br /&gt;The advantage is clear, if we want to change the look of the site, we live editing        &lt;br /&gt;one file only and the results will be reflected on the overall HTML document        &lt;br /&gt;linked to it.        &lt;br /&gt;Example:        &lt;br /&gt;Create a folder named css - create a file named global.css. Move the CSS tag        &lt;br /&gt;of the file. html to global.css. To give effect rules all Style-Sheet        &lt;br /&gt;or to a specific HTML document, add the tag between &amp;lt;HEAD&amp;gt; ... &amp;lt;/ HEAD&amp;gt;, becomes:&lt;/p&gt;      &lt;p&gt;&amp;#160;&lt;/p&gt;      &lt;blockquote&gt;       &lt;p&gt;&amp;lt;head&amp;gt;         &lt;br /&gt;&amp;lt;link rek=&amp;quot;stylesheet&amp;quot; href=&lt;a href=&quot;http://PROGRAMMINGHAHA.BLOGSPOT.COM&quot;&gt;http://PROGRAMMINGHAHA.BLOGSPOT.COM/style/global.css&lt;/a&gt;          &lt;br /&gt;type=&amp;quot;text/css&amp;quot; media=”all” /&amp;gt;          &lt;br /&gt;&amp;lt;/head&amp;gt;&lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;and all rules of Style-sheet in &amp;quot;global.css&amp;quot; will be applied automatically       &lt;br /&gt;into HTML documents that want to be informed Style-Sheet. Or can also import        &lt;br /&gt;Style-Sheet by using keywords (keyword)&amp;#160; &lt;font color=&quot;#ff0000&quot;&gt;&amp;quot;@import&amp;quot;,&lt;/font&gt;&lt;/p&gt;      &lt;p&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;/font&gt;&lt;/p&gt;      &lt;blockquote&gt;       &lt;p&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot; media=”all”&amp;gt;         &lt;br /&gt;@import url(&lt;a href=&quot;http://PROGRAMMINGHAHA.BLOGSPOT.COM&quot;&gt;http://PROGRAMMINGHAHA.BLOGSPOT.COM&lt;/a&gt;&lt;a href=&quot;http://www.webkamu.com/global.css);&quot;&gt;/global.css);&lt;/a&gt;          &lt;br /&gt;&amp;lt;/style&amp;gt;&lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;** Template Creation without tables (tableless)&lt;/p&gt;      &lt;blockquote&gt;       &lt;p&gt;&amp;lt;table width=&amp;quot;400&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; border=&amp;quot;0&amp;quot; align=&amp;quot;center&amp;quot;&amp;gt;         &lt;br /&gt;&amp;lt;tr&amp;gt;&amp;lt;td colspan=&amp;quot;3&amp;quot;&amp;gt;          &lt;br /&gt;&amp;lt;table width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;0&amp;quot;&amp;gt;          &lt;br /&gt;&amp;lt;tr&amp;gt;          &lt;br /&gt;&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;#WEBSITE_TITLE#&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;          &lt;br /&gt;&amp;lt;/tr&amp;gt;          &lt;br /&gt;&amp;lt;tr&amp;gt;          &lt;br /&gt;&amp;lt;td&amp;gt;&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;HOME | FAQ | CONTACT | SITEMAP&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;          &lt;br /&gt;&amp;lt;/tr&amp;gt;          &lt;br /&gt;&amp;lt;/table&amp;gt;          &lt;br /&gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;          &lt;br /&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;          &lt;br /&gt;&amp;lt;table width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;0&amp;quot;&amp;gt;          &lt;br /&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;#LEFT_BLOCK#&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;          &lt;br /&gt;&amp;lt;/table&amp;gt;          &lt;br /&gt;&amp;lt;/td&amp;gt;          &lt;br /&gt;&amp;lt;td&amp;gt;          &lt;br /&gt;&amp;lt;table width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;0&amp;quot;&amp;gt;          &lt;br /&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;#CONTENT#&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;          &lt;br /&gt;&amp;lt;/table&amp;gt;          &lt;br /&gt;&amp;lt;/td&amp;gt;          &lt;br /&gt;&amp;lt;td&amp;gt;&lt;/p&gt;        &lt;p&gt;&amp;lt;table width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;0&amp;quot;&amp;gt;         &lt;br /&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;#RIGHT_BLOCK#&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;          &lt;br /&gt;&amp;lt;/table&amp;gt;          &lt;br /&gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;          &lt;br /&gt;&amp;lt;tr&amp;gt;&amp;lt;td colspan=&amp;quot;3&amp;quot;&amp;gt;          &lt;br /&gt;&amp;lt;table width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;0&amp;quot;&amp;gt;          &lt;br /&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;          &lt;br /&gt;&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;© 2006 Web Programmer. All Rights Reserved.&amp;lt;/div&amp;gt;          &lt;br /&gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;          &lt;br /&gt;&amp;lt;/table&amp;gt;          &lt;br /&gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;          &lt;br /&gt;&amp;lt;/table&amp;gt;&lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;&amp;#160;&lt;/p&gt;      &lt;p&gt;** Template Creation without tables (tableless)&lt;/p&gt;      &lt;p&gt;&amp;#160;&lt;/p&gt;      &lt;blockquote&gt;       &lt;p&gt;&amp;lt;div&amp;gt;         &lt;br /&gt;&amp;lt;div&amp;gt;#JUDUL_WEBSITE#&amp;lt;/div&amp;gt;          &lt;br /&gt;&amp;lt;div&amp;gt;HOME | FAQ | CONTACT | SITEMAP&amp;lt;/div&amp;gt;          &lt;br /&gt;&amp;lt;div&amp;gt;          &lt;br /&gt;&amp;lt;div&amp;gt;#BLOCK_KIRI#&amp;lt;/div&amp;gt;          &lt;br /&gt;&amp;lt;div&amp;gt;#CONTENT#&amp;lt;/div&amp;gt;          &lt;br /&gt;&amp;lt;div&amp;gt;#BLOCK_KANAN#&amp;lt;/div&amp;gt;          &lt;br /&gt;&amp;lt;/div&amp;gt;          &lt;br /&gt;&amp;lt;div&amp;gt;© 2006 Web Programmer. All Rights Reserved.&amp;lt;/div&amp;gt;          &lt;br /&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;        &lt;p&gt;* {         &lt;br /&gt;font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, Times, serif;          &lt;br /&gt;font-size: 12px;          &lt;br /&gt;}          &lt;br /&gt;#main {          &lt;br /&gt;width: 800px;          &lt;br /&gt;margin: 0px 0px 0px 100px;          &lt;br /&gt;}          &lt;br /&gt;#header {          &lt;br /&gt;font-weight: bold;&lt;/p&gt;        &lt;p&gt;padding: 10px 10px 10px 10px;         &lt;br /&gt;background: #FFCC00;          &lt;br /&gt;}          &lt;br /&gt;#nav {          &lt;br /&gt;text-align: right;          &lt;br /&gt;padding: 0px 20px 0px 0px;          &lt;br /&gt;background: #6666CC;          &lt;br /&gt;}          &lt;br /&gt;#middle {          &lt;br /&gt;clear: both;          &lt;br /&gt;}          &lt;br /&gt;#left {          &lt;br /&gt;float: left;          &lt;br /&gt;width: 180px;          &lt;br /&gt;padding: 5px 5px 5px 5px;          &lt;br /&gt;}          &lt;br /&gt;#content {          &lt;br /&gt;float: left;          &lt;br /&gt;width: 350px;          &lt;br /&gt;padding: 10px 10px 10px 10px;          &lt;br /&gt;}          &lt;br /&gt;#right {          &lt;br /&gt;float: left;          &lt;br /&gt;padding: 5px 5px 5px 5px;          &lt;br /&gt;}          &lt;br /&gt;#footer {&lt;/p&gt;        &lt;p&gt;float: left;         &lt;br /&gt;padding: 10px 10px 10px 10px;          &lt;br /&gt;text-align: center;          &lt;br /&gt;}&lt;/p&gt;&lt;/blockquote&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/4122710679749222095/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/05/css-cascading-style-sheet.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/4122710679749222095'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/4122710679749222095'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/05/css-cascading-style-sheet.html' title='CSS (CASCADING STYLE SHEET)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWfJzurcZEbpQ6E3V6ZmqHkq32FQ83OYWnCKltsgKnYhj1OGthN1TdX379V1zAsSX2-mYEIMsXTnhKaupcO4MRbhC3inMV7AQDtJ38GgOn4ZSdM-m9a5V5gv_ewcM_kToBWyg5M1-US2Y/s72-c?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-4664256724977521447</id><published>2011-05-05T16:10:00.000+07:00</published><updated>2011-05-05T16:33:14.135+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Change Title Case Using String Functions Being Ucwords</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/05/change-title-case-using-string.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;there any php functions that are used to convert a string into upper case, lower case or title case. For this time I just want to discuss ucwords function. Ucwords function is a function that is used to change the characters of a string to title case form&lt;/p&gt;  &lt;p&gt;&lt;blink&gt;Syntax of function ucwords:      &lt;br /&gt;&lt;em&gt;&lt;font color=&quot;#ff0000&quot;&gt;$ output = ucwords ($ change);&lt;/font&gt;&lt;/em&gt;       &lt;br /&gt;variable $ output is a place used for storing strings that have been dibuah by ucwords function.       &lt;br /&gt;The variable $ change is a string that want dichange into title case.       &lt;br /&gt;Source code (save it as ucwords.php):&lt;/blink&gt;&lt;/p&gt;  &lt;a name=&#39;more&#39;&gt;&lt;/a&gt;  &lt;p&gt;&lt;blink&gt;&lt;/blink&gt;&lt;/p&gt;  &lt;p&gt;&lt;blink&gt;&lt;/blink&gt;&lt;/p&gt;  &lt;p class=&quot;csharpcode&quot;&gt;   &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   1:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;ucwords&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   2:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;center&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   3:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;form&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;action&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;ucwords.php&amp;quot;&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;method&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;get&amp;quot;&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   4:  &lt;/span&gt;  &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;table&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;222&amp;quot;&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;border&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;0&amp;quot;&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   5:  &lt;/span&gt;    &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;tr&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   6:  &lt;/span&gt;      &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;td&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;68&amp;quot;&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;sentence&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;td&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   7:  &lt;/span&gt;      &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;td&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;144&amp;quot;&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;input&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;type&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;text&amp;quot;&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;sentence&amp;quot;&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;value&lt;/span&gt;=&amp;quot;&amp;amp;&lt;span class=&quot;attr&quot;&gt;lt&lt;/span&gt;;?&lt;span class=&quot;attr&quot;&gt;php&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;echo&lt;/span&gt; $&lt;span class=&quot;attr&quot;&gt;_GET&lt;/span&gt;[&lt;span class=&quot;attr&quot;&gt;sentence&lt;/span&gt;]; ?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&amp;quot; &lt;span class=&quot;kwrd&quot;&gt;/&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;td&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   8:  &lt;/span&gt;    &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;tr&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   9:  &lt;/span&gt;    &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;tr&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  10:  &lt;/span&gt;      &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;td&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;colspan&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;2&amp;quot;&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;align&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;center&amp;quot;&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;input&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;type&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;submit&amp;quot;&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;submit&amp;quot;&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;value&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;process&amp;quot;&lt;/span&gt; &lt;span class=&quot;kwrd&quot;&gt;/&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;td&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;  11:  &lt;/span&gt;      &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;tr&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  12:  &lt;/span&gt;  &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;table&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;  13:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;form&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  14:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;?&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;php&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;  15:  &lt;/span&gt;&lt;span class=&quot;attr&quot;&gt;if&lt;/span&gt; ($&lt;span class=&quot;attr&quot;&gt;_GET&lt;/span&gt;[&lt;span class=&quot;attr&quot;&gt;submit&lt;/span&gt;]=&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;process&amp;quot;&lt;/span&gt;) {&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  16:  &lt;/span&gt;?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;  17:  &lt;/span&gt;sentence&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&amp;lt;?&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;php&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;echo&lt;/span&gt; $&lt;span class=&quot;attr&quot;&gt;_GET&lt;/span&gt;[&lt;span class=&quot;attr&quot;&gt;sentence&lt;/span&gt;]; ?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; after using the function becomes ucwords berchange&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  18:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;?&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;php&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;  19:  &lt;/span&gt;$&lt;span class=&quot;attr&quot;&gt;sentence&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;ucwords&lt;/span&gt;($&lt;span class=&quot;attr&quot;&gt;_GET&lt;/span&gt;[&lt;span class=&quot;attr&quot;&gt;sentence&lt;/span&gt;]);&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  20:  &lt;/span&gt;&lt;span class=&quot;attr&quot;&gt;echo&lt;/span&gt; &amp;quot;&amp;amp;&lt;span class=&quot;attr&quot;&gt;lt&lt;/span&gt;;&lt;span class=&quot;attr&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;$sentence&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&amp;quot;;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;  21:  &lt;/span&gt;}&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  22:  &lt;/span&gt;?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;  23:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;center&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;style type=&quot;text/css&quot;&gt;&lt;br /&gt;.csharpcode, .csharpcode pre&lt;br /&gt;{&lt;br /&gt;	font-size: small;&lt;br /&gt;	color: black;&lt;br /&gt;	font-family: consolas, &quot;Courier New&quot;, courier, monospace;&lt;br /&gt;	background-color: #ffffff;&lt;br /&gt;	/*white-space: pre;*/&lt;br /&gt;}&lt;br /&gt;.csharpcode pre { margin: 0em; }&lt;br /&gt;.csharpcode .rem { color: #008000; }&lt;br /&gt;.csharpcode .kwrd { color: #0000ff; }&lt;br /&gt;.csharpcode .str { color: #006080; }&lt;br /&gt;.csharpcode .op { color: #0000c0; }&lt;br /&gt;.csharpcode .preproc { color: #cc6633; }&lt;br /&gt;.csharpcode .asp { background-color: #ffff00; }&lt;br /&gt;.csharpcode .html { color: #800000; }&lt;br /&gt;.csharpcode .attr { color: #ff0000; }&lt;br /&gt;.csharpcode .alt &lt;br /&gt;{&lt;br /&gt;	background-color: #f4f4f4;&lt;br /&gt;	width: 100%;&lt;br /&gt;	margin: 0em;&lt;br /&gt;}&lt;br /&gt;.csharpcode .lnum { color: #606060; }&lt;/style&gt;&lt;br /&gt;&lt;br /&gt;&lt;p align=&quot;left&quot;&gt;&lt;/p&gt;&lt;br /&gt;&lt;center&gt;&lt;form method=&quot;get&quot; action=&quot;ucwords.php&quot;&gt;&lt;br /&gt;    &lt;table border=&quot;0&quot; width=&quot;222&quot;&gt;&lt;tbody&gt;&lt;br /&gt;        &lt;tr&gt;&lt;br /&gt;          &lt;td width=&quot;68&quot;&gt;sentence&lt;/td&gt;&lt;br /&gt;&lt;br /&gt;          &lt;td width=&quot;144&quot;&gt;&lt;input name=&quot;sentence&quot; /&gt;&lt;/td&gt;&lt;br /&gt;        &lt;/tr&gt;&lt;br /&gt;&lt;br /&gt;        &lt;tr&gt;&lt;br /&gt;          &lt;td colspan=&quot;2&quot; align=&quot;center&quot;&gt;&lt;input type=&quot;submit&quot; name=&quot;submit&quot; /&gt;&lt;/td&gt;&lt;br /&gt;        &lt;/tr&gt;&lt;br /&gt;      &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;  &lt;/form&gt;&lt;/center&gt;&lt;center&gt;&amp;lt;?php&lt;br /&gt;if ($_GET[submit]==&amp;quot;process&amp;quot;) {&lt;br /&gt;?&amp;gt;sentence&lt;b&gt;&amp;lt;?php echo $_GET[sentence]; ?&amp;gt;&lt;/b&gt; after using the function becomes ucwords berchange &lt;/center&gt;&lt;center&gt;&amp;#160;&lt;/center&gt;The above is a preview, the extension must php&lt;!-- Adsense End --&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/4664256724977521447/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/05/change-title-case-using-string.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/4664256724977521447'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/4664256724977521447'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/05/change-title-case-using-string.html' title='Change Title Case Using String Functions Being Ucwords'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-6413991943986504206</id><published>2011-05-02T22:05:00.000+07:00</published><updated>2011-05-02T22:20:24.350+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="basic"/><title type='text'>DATABASE BASIC CONCEPTS</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/05/database-basic-concepts.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3gtw4VCw9Ecbj8NbZUfAbczirm4P63ZS8JBYBfxQcsBW04tHj_mYKAwD6lLLDGflTdnTYBnjVs_9ImeIdx632cORv1uOA49oJ56SugScEnqTKEyJ7xRBXqV0urZmOLObqPCYWxFMwlPY/s1600-h/basis%20data%5B2%5D.png&quot;&gt;&lt;img style=&quot;background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px&quot; title=&quot;basis data&quot; border=&quot;0&quot; alt=&quot; basis data, database, basic&quot; align=&quot;left&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnO69yZXA-64cK7ok0niCq3QqKH3OPTN2vELFXFjL4wt3TJuBD8qVX328z0lNNYXctlpO5kkiJjjweRNLKM77AaCLTDWcRxpR6tqHXekt0TfjYgxkHzmNwRQ7hwHgJNb4XQ2kt0ieGDyU/?imgmax=800&quot; width=&quot;198&quot; height=&quot;244&quot; /&gt;&lt;/a&gt;do not know about databases? basik data is used to make the program. database is very closely related to sql. BACKGROUND Database processing into the mainstay and its presence is required by the various institutions and companies In developing the required database information system as data storage media The presence of the database can improve company performance and to improve the competitiveness of the company The database can speed up efforts to customer service to produce information quickly and accurately help decision makers to quickly decide an issue based on existing information    &lt;br /&gt;&lt;/p&gt;  &lt;a name=&#39;more&#39;&gt;&lt;/a&gt;  &lt;p&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiH0xRmCYi-O-4dJmYXojXE2KjeD2YENbS7GxaMICvPsAPqsaq3MfgWVGwMufn5gGK7F2QLoXA1-3awu0CLkZIidTR55qWphit2Qq51mrPmK7hAytDLlbbK5gCQKYChHJpau1e4SkjIiWc/s1600-h/Free_Database_Icons_by_artistsvalley%5B6%5D.jpg&quot;&gt;&lt;img style=&quot;background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px&quot; title=&quot;Free_Database_Icons&quot; border=&quot;0&quot; alt=&quot;Free_Database_Icons, database icon&quot; align=&quot;left&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2YoE-jGorG0Z3u7Ij4hDIcT4pggLyEQNgPwtAdx5Ku2lawjhSVuGY0Erei_W1_YRoI3aL8GJd8wBFPtfommzSBe_DmprsqBmlzcaPtHmeZ0aR1mQOOMzmOrCca5qmhcJgdMirTScgx_Q/?imgmax=800&quot; width=&quot;244&quot; height=&quot;244&quot; /&gt;&lt;/a&gt;EXAMPLE APPLICATIONS on banking transactions flight reservations and scheduling applications registration process and recording of data on college students application to process the sale, purchase and recording of data on goods trading company recording of employee data and payroll activities including the operation of an enterprise etc.. &lt;/p&gt;  &lt;p&gt;COMPANY INFORMATION FOR RETAIL ... search sales look for the amount of stock available what is the best-selling goods sold on this month net profit INFORMATION FOR THE LIBRARY ... Data search of books by title, author or other criteria can be easily done with the data base Search borrowers who are late returning data is also easy to do so could be made an application making the invoice based on the information available   &lt;br /&gt;Taking advantage of network technologies, the ability of the database can be optimized such inter-branch transactions on an online banking    &lt;br /&gt;DEFINITIONS    &lt;br /&gt;The database is a collection of data that relate to each other    &lt;br /&gt;The data itself is a fact about objects, people and others. Data expressed as values ​​(numbers, sequences of characters, or symbols).    &lt;br /&gt;The set of interrelated sets of data are organized in such a way that it can later be used to quickly and easily    &lt;br /&gt;A collection of interrelated data stored together in such a way without repetition (redundancy) is not necessary, to meet the needs of    &lt;br /&gt;Collection of files / tables / archives related stored in electronic storage media    &lt;br /&gt;PURPOSE    &lt;br /&gt;arrange the data so obtained the ease, accuracy and speed in decision again    &lt;br /&gt;TERMS    &lt;br /&gt;The lack of redundancy and data inconsistency    &lt;br /&gt;Redundancy occurs when an information is stored in several places.    &lt;br /&gt;For example:    &lt;br /&gt;NIM containing student data, name, address and other attributes    &lt;br /&gt;KHS student data whose contents have NIM, name, mata_kuliah and Value.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;   Technorati Tags: &lt;a href=&quot;http://technorati.com/tags/DATABASE&quot; rel=&quot;tag&quot;&gt;DATABASE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/BASIC&quot; rel=&quot;tag&quot;&gt;BASIC&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/CONCEPTS&quot; rel=&quot;tag&quot;&gt;CONCEPTS&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/databases&quot; rel=&quot;tag&quot;&gt;databases&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/data&quot; rel=&quot;tag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/BACKGROUND&quot; rel=&quot;tag&quot;&gt;BACKGROUND&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/mainstay&quot; rel=&quot;tag&quot;&gt;mainstay&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/presence&quot; rel=&quot;tag&quot;&gt;presence&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/institutions&quot; rel=&quot;tag&quot;&gt;institutions&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/information&quot; rel=&quot;tag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/system&quot; rel=&quot;tag&quot;&gt;system&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/storage&quot; rel=&quot;tag&quot;&gt;storage&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/media&quot; rel=&quot;tag&quot;&gt;media&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/performance&quot; rel=&quot;tag&quot;&gt;performance&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/efforts&quot; rel=&quot;tag&quot;&gt;efforts&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/customer&quot; rel=&quot;tag&quot;&gt;customer&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/decision&quot; rel=&quot;tag&quot;&gt;decision&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/makers&quot; rel=&quot;tag&quot;&gt;makers&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/EXAMPLE&quot; rel=&quot;tag&quot;&gt;EXAMPLE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/APPLICATIONS&quot; rel=&quot;tag&quot;&gt;APPLICATIONS&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/transactions&quot; rel=&quot;tag&quot;&gt;transactions&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/registration&quot; rel=&quot;tag&quot;&gt;registration&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/college&quot; rel=&quot;tag&quot;&gt;college&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/students&quot; rel=&quot;tag&quot;&gt;students&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/sale&quot; rel=&quot;tag&quot;&gt;sale&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/goods&quot; rel=&quot;tag&quot;&gt;goods&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/employee&quot; rel=&quot;tag&quot;&gt;employee&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/payroll&quot; rel=&quot;tag&quot;&gt;payroll&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/enterprise&quot; rel=&quot;tag&quot;&gt;enterprise&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/COMPANY&quot; rel=&quot;tag&quot;&gt;COMPANY&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/RETAIL&quot; rel=&quot;tag&quot;&gt;RETAIL&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/sales&quot; rel=&quot;tag&quot;&gt;sales&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/LIBRARY&quot; rel=&quot;tag&quot;&gt;LIBRARY&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/author&quot; rel=&quot;tag&quot;&gt;author&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/criteria&quot; rel=&quot;tag&quot;&gt;criteria&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Search&quot; rel=&quot;tag&quot;&gt;Search&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/borrowers&quot; rel=&quot;tag&quot;&gt;borrowers&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/advantage&quot; rel=&quot;tag&quot;&gt;advantage&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/technologies&quot; rel=&quot;tag&quot;&gt;technologies&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/DEFINITIONS&quot; rel=&quot;tag&quot;&gt;DEFINITIONS&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/collection&quot; rel=&quot;tag&quot;&gt;collection&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/fact&quot; rel=&quot;tag&quot;&gt;fact&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/sequences&quot; rel=&quot;tag&quot;&gt;sequences&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/symbols&quot; rel=&quot;tag&quot;&gt;symbols&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/repetition&quot; rel=&quot;tag&quot;&gt;repetition&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/redundancy&quot; rel=&quot;tag&quot;&gt;redundancy&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/PURPOSE&quot; rel=&quot;tag&quot;&gt;PURPOSE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/accuracy&quot; rel=&quot;tag&quot;&gt;accuracy&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/TERMS&quot; rel=&quot;tag&quot;&gt;TERMS&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/inconsistency&quot; rel=&quot;tag&quot;&gt;inconsistency&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/student&quot; rel=&quot;tag&quot;&gt;student&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Value&quot; rel=&quot;tag&quot;&gt;Value&lt;/a&gt;  &lt;br /&gt;   Windows Live Tags: &lt;a href=&quot;http://windows.live.com/connect/tag/DATABASE&quot; rel=&quot;clubhouseTag&quot;&gt;DATABASE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/BASIC&quot; rel=&quot;clubhouseTag&quot;&gt;BASIC&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/CONCEPTS&quot; rel=&quot;clubhouseTag&quot;&gt;CONCEPTS&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/databases&quot; rel=&quot;clubhouseTag&quot;&gt;databases&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/data&quot; rel=&quot;clubhouseTag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/BACKGROUND&quot; rel=&quot;clubhouseTag&quot;&gt;BACKGROUND&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/mainstay&quot; rel=&quot;clubhouseTag&quot;&gt;mainstay&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/presence&quot; rel=&quot;clubhouseTag&quot;&gt;presence&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/institutions&quot; rel=&quot;clubhouseTag&quot;&gt;institutions&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/information&quot; rel=&quot;clubhouseTag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/system&quot; rel=&quot;clubhouseTag&quot;&gt;system&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/storage&quot; rel=&quot;clubhouseTag&quot;&gt;storage&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/media&quot; rel=&quot;clubhouseTag&quot;&gt;media&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/performance&quot; rel=&quot;clubhouseTag&quot;&gt;performance&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/efforts&quot; rel=&quot;clubhouseTag&quot;&gt;efforts&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/customer&quot; rel=&quot;clubhouseTag&quot;&gt;customer&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/decision&quot; rel=&quot;clubhouseTag&quot;&gt;decision&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/makers&quot; rel=&quot;clubhouseTag&quot;&gt;makers&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/EXAMPLE&quot; rel=&quot;clubhouseTag&quot;&gt;EXAMPLE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/APPLICATIONS&quot; rel=&quot;clubhouseTag&quot;&gt;APPLICATIONS&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/transactions&quot; rel=&quot;clubhouseTag&quot;&gt;transactions&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/registration&quot; rel=&quot;clubhouseTag&quot;&gt;registration&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/college&quot; rel=&quot;clubhouseTag&quot;&gt;college&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/students&quot; rel=&quot;clubhouseTag&quot;&gt;students&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/sale&quot; rel=&quot;clubhouseTag&quot;&gt;sale&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/goods&quot; rel=&quot;clubhouseTag&quot;&gt;goods&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/employee&quot; rel=&quot;clubhouseTag&quot;&gt;employee&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/payroll&quot; rel=&quot;clubhouseTag&quot;&gt;payroll&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/enterprise&quot; rel=&quot;clubhouseTag&quot;&gt;enterprise&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/COMPANY&quot; rel=&quot;clubhouseTag&quot;&gt;COMPANY&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/RETAIL&quot; rel=&quot;clubhouseTag&quot;&gt;RETAIL&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/sales&quot; rel=&quot;clubhouseTag&quot;&gt;sales&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/LIBRARY&quot; rel=&quot;clubhouseTag&quot;&gt;LIBRARY&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/author&quot; rel=&quot;clubhouseTag&quot;&gt;author&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/criteria&quot; rel=&quot;clubhouseTag&quot;&gt;criteria&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Search&quot; rel=&quot;clubhouseTag&quot;&gt;Search&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/borrowers&quot; rel=&quot;clubhouseTag&quot;&gt;borrowers&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/advantage&quot; rel=&quot;clubhouseTag&quot;&gt;advantage&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/technologies&quot; rel=&quot;clubhouseTag&quot;&gt;technologies&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/DEFINITIONS&quot; rel=&quot;clubhouseTag&quot;&gt;DEFINITIONS&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/collection&quot; rel=&quot;clubhouseTag&quot;&gt;collection&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/fact&quot; rel=&quot;clubhouseTag&quot;&gt;fact&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/sequences&quot; rel=&quot;clubhouseTag&quot;&gt;sequences&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/symbols&quot; rel=&quot;clubhouseTag&quot;&gt;symbols&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/repetition&quot; rel=&quot;clubhouseTag&quot;&gt;repetition&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/redundancy&quot; rel=&quot;clubhouseTag&quot;&gt;redundancy&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/PURPOSE&quot; rel=&quot;clubhouseTag&quot;&gt;PURPOSE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/accuracy&quot; rel=&quot;clubhouseTag&quot;&gt;accuracy&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/TERMS&quot; rel=&quot;clubhouseTag&quot;&gt;TERMS&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/inconsistency&quot; rel=&quot;clubhouseTag&quot;&gt;inconsistency&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/student&quot; rel=&quot;clubhouseTag&quot;&gt;student&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Value&quot; rel=&quot;clubhouseTag&quot;&gt;Value&lt;/a&gt;  &lt;br /&gt;     WordPress Tags: &lt;a href=&quot;http://wordpress.com/tag/DATABASE&quot; rel=&quot;Tag&quot;&gt;DATABASE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/BASIC&quot; rel=&quot;Tag&quot;&gt;BASIC&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/CONCEPTS&quot; rel=&quot;Tag&quot;&gt;CONCEPTS&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/databases&quot; rel=&quot;Tag&quot;&gt;databases&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/data&quot; rel=&quot;Tag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/BACKGROUND&quot; rel=&quot;Tag&quot;&gt;BACKGROUND&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/mainstay&quot; rel=&quot;Tag&quot;&gt;mainstay&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/presence&quot; rel=&quot;Tag&quot;&gt;presence&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/institutions&quot; rel=&quot;Tag&quot;&gt;institutions&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/information&quot; rel=&quot;Tag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/system&quot; rel=&quot;Tag&quot;&gt;system&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/storage&quot; rel=&quot;Tag&quot;&gt;storage&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/media&quot; rel=&quot;Tag&quot;&gt;media&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/performance&quot; rel=&quot;Tag&quot;&gt;performance&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/efforts&quot; rel=&quot;Tag&quot;&gt;efforts&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/customer&quot; rel=&quot;Tag&quot;&gt;customer&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/decision&quot; rel=&quot;Tag&quot;&gt;decision&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/makers&quot; rel=&quot;Tag&quot;&gt;makers&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/EXAMPLE&quot; rel=&quot;Tag&quot;&gt;EXAMPLE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/APPLICATIONS&quot; rel=&quot;Tag&quot;&gt;APPLICATIONS&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/transactions&quot; rel=&quot;Tag&quot;&gt;transactions&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/registration&quot; rel=&quot;Tag&quot;&gt;registration&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/college&quot; rel=&quot;Tag&quot;&gt;college&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/students&quot; rel=&quot;Tag&quot;&gt;students&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/sale&quot; rel=&quot;Tag&quot;&gt;sale&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/goods&quot; rel=&quot;Tag&quot;&gt;goods&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/employee&quot; rel=&quot;Tag&quot;&gt;employee&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/payroll&quot; rel=&quot;Tag&quot;&gt;payroll&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/enterprise&quot; rel=&quot;Tag&quot;&gt;enterprise&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/COMPANY&quot; rel=&quot;Tag&quot;&gt;COMPANY&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/RETAIL&quot; rel=&quot;Tag&quot;&gt;RETAIL&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/sales&quot; rel=&quot;Tag&quot;&gt;sales&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/LIBRARY&quot; rel=&quot;Tag&quot;&gt;LIBRARY&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/author&quot; rel=&quot;Tag&quot;&gt;author&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/criteria&quot; rel=&quot;Tag&quot;&gt;criteria&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Search&quot; rel=&quot;Tag&quot;&gt;Search&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/borrowers&quot; rel=&quot;Tag&quot;&gt;borrowers&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/advantage&quot; rel=&quot;Tag&quot;&gt;advantage&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/technologies&quot; rel=&quot;Tag&quot;&gt;technologies&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/DEFINITIONS&quot; rel=&quot;Tag&quot;&gt;DEFINITIONS&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/collection&quot; rel=&quot;Tag&quot;&gt;collection&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/fact&quot; rel=&quot;Tag&quot;&gt;fact&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/sequences&quot; rel=&quot;Tag&quot;&gt;sequences&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/symbols&quot; rel=&quot;Tag&quot;&gt;symbols&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/repetition&quot; rel=&quot;Tag&quot;&gt;repetition&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/redundancy&quot; rel=&quot;Tag&quot;&gt;redundancy&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/PURPOSE&quot; rel=&quot;Tag&quot;&gt;PURPOSE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/accuracy&quot; rel=&quot;Tag&quot;&gt;accuracy&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/TERMS&quot; rel=&quot;Tag&quot;&gt;TERMS&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/inconsistency&quot; rel=&quot;Tag&quot;&gt;inconsistency&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/student&quot; rel=&quot;Tag&quot;&gt;student&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Value&quot; rel=&quot;Tag&quot;&gt;Value&lt;/a&gt;  &lt;br /&gt;     Blogger Labels: &lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/DATABASE&quot; rel=&quot;Tag&quot;&gt;DATABASE&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/BASIC&quot; rel=&quot;Tag&quot;&gt;BASIC&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/CONCEPTS&quot; rel=&quot;Tag&quot;&gt;CONCEPTS&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/databases&quot; rel=&quot;Tag&quot;&gt;databases&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/data&quot; rel=&quot;Tag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/BACKGROUND&quot; rel=&quot;Tag&quot;&gt;BACKGROUND&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/mainstay&quot; rel=&quot;Tag&quot;&gt;mainstay&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/presence&quot; rel=&quot;Tag&quot;&gt;presence&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/institutions&quot; rel=&quot;Tag&quot;&gt;institutions&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/information&quot; rel=&quot;Tag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/system&quot; rel=&quot;Tag&quot;&gt;system&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/storage&quot; rel=&quot;Tag&quot;&gt;storage&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/media&quot; rel=&quot;Tag&quot;&gt;media&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/performance&quot; rel=&quot;Tag&quot;&gt;performance&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/efforts&quot; rel=&quot;Tag&quot;&gt;efforts&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/customer&quot; rel=&quot;Tag&quot;&gt;customer&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/decision&quot; rel=&quot;Tag&quot;&gt;decision&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/makers&quot; rel=&quot;Tag&quot;&gt;makers&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/EXAMPLE&quot; rel=&quot;Tag&quot;&gt;EXAMPLE&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/APPLICATIONS&quot; rel=&quot;Tag&quot;&gt;APPLICATIONS&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/transactions&quot; rel=&quot;Tag&quot;&gt;transactions&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/registration&quot; rel=&quot;Tag&quot;&gt;registration&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/college&quot; rel=&quot;Tag&quot;&gt;college&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/students&quot; rel=&quot;Tag&quot;&gt;students&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/sale&quot; rel=&quot;Tag&quot;&gt;sale&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/goods&quot; rel=&quot;Tag&quot;&gt;goods&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/employee&quot; rel=&quot;Tag&quot;&gt;employee&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/payroll&quot; rel=&quot;Tag&quot;&gt;payroll&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/enterprise&quot; rel=&quot;Tag&quot;&gt;enterprise&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/COMPANY&quot; rel=&quot;Tag&quot;&gt;COMPANY&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/RETAIL&quot; rel=&quot;Tag&quot;&gt;RETAIL&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/sales&quot; rel=&quot;Tag&quot;&gt;sales&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/LIBRARY&quot; rel=&quot;Tag&quot;&gt;LIBRARY&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/author&quot; rel=&quot;Tag&quot;&gt;author&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/criteria&quot; rel=&quot;Tag&quot;&gt;criteria&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Search&quot; rel=&quot;Tag&quot;&gt;Search&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/borrowers&quot; rel=&quot;Tag&quot;&gt;borrowers&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/advantage&quot; rel=&quot;Tag&quot;&gt;advantage&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/technologies&quot; rel=&quot;Tag&quot;&gt;technologies&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/DEFINITIONS&quot; rel=&quot;Tag&quot;&gt;DEFINITIONS&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/collection&quot; rel=&quot;Tag&quot;&gt;collection&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/fact&quot; rel=&quot;Tag&quot;&gt;fact&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/sequences&quot; rel=&quot;Tag&quot;&gt;sequences&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/symbols&quot; rel=&quot;Tag&quot;&gt;symbols&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/repetition&quot; rel=&quot;Tag&quot;&gt;repetition&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/redundancy&quot; rel=&quot;Tag&quot;&gt;redundancy&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/PURPOSE&quot; rel=&quot;Tag&quot;&gt;PURPOSE&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/accuracy&quot; rel=&quot;Tag&quot;&gt;accuracy&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/TERMS&quot; rel=&quot;Tag&quot;&gt;TERMS&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/inconsistency&quot; rel=&quot;Tag&quot;&gt;inconsistency&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/student&quot; rel=&quot;Tag&quot;&gt;student&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Value&quot; rel=&quot;Tag&quot;&gt;Value&lt;/a&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/6413991943986504206/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/05/database-basic-concepts.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/6413991943986504206'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/6413991943986504206'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/05/database-basic-concepts.html' title='DATABASE BASIC CONCEPTS'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnO69yZXA-64cK7ok0niCq3QqKH3OPTN2vELFXFjL4wt3TJuBD8qVX328z0lNNYXctlpO5kkiJjjweRNLKM77AaCLTDWcRxpR6tqHXekt0TfjYgxkHzmNwRQ7hwHgJNb4XQ2kt0ieGDyU/s72-c?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-4293829818694272823</id><published>2011-04-30T16:31:00.000+07:00</published><updated>2011-04-30T16:41:27.920+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="xml"/><title type='text'>BASIC XML</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/04/basic-xml.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;What is XML? &lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-idontknowsmile&quot; alt=&quot;I don&amp;#39;t know smile&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFOXSA4g9js_BrkspNAVgTuQWXkKvE5zfCb9JSB9Me89kf9QhRWpRH9-3GVK0mOja_bxW1Uh3EBBzP7hnsY6EA1FXjjjaY5l6lic5_vXj6if5u8h-KoKqlW59m2kc4u4GdmKtwpB_qK5Q/?imgmax=800&quot; /&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;XML stands for E&lt;b&gt;X&lt;/b&gt;tensible &lt;b&gt;M&lt;/b&gt;arkup &lt;b&gt;L&lt;/b&gt;anguage &lt;/li&gt;    &lt;li&gt;XML is a &lt;b&gt;markup language&lt;/b&gt; much like HTML &lt;/li&gt;    &lt;li&gt;XML was designed to &lt;b&gt;carry data&lt;/b&gt;, not to display data &lt;/li&gt;    &lt;li&gt;XML tags are not predefined. You must &lt;b&gt;define your own tags&lt;/b&gt;&lt;/li&gt;    &lt;li&gt;XML is designed to be &lt;b&gt;self-descriptive&lt;/b&gt;&lt;/li&gt;    &lt;li&gt;XML is a &lt;b&gt;W3C Recommendation&lt;/b&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;h4&gt;&lt;font style=&quot;background-color: #ff0000&quot; color=&quot;#00ff00&quot; size=&quot;5&quot;&gt;&lt;em&gt;The Difference Between XML and HTML&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;  &lt;p&gt;XML is not a replacement for HTML.   &lt;br /&gt;XML and HTML were designed with different goals:&lt;/p&gt;  &lt;p&gt;XML was designed to transport and store data, with focus on what data is.   &lt;br /&gt;HTML was designed to display data, with focus on how data looks.&lt;/p&gt;  &lt;p&gt;HTML is about displaying information, while XML is about carrying information.&lt;/p&gt;  &lt;h4&gt;&lt;font style=&quot;background-color: #ffff00&quot; color=&quot;#0000ff&quot; size=&quot;6&quot;&gt;&lt;em&gt;XML Does not DO Anything&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;  &lt;p&gt;Maybe it is a little hard to understand, but XML does not DO anything. XML was created to structure, store, and transport information.&lt;/p&gt;  &lt;p&gt;The following example is a note to Tove from Jani, stored as XML:   &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;       &lt;tr&gt;         &lt;td&gt;           &lt;pre&gt;&amp;lt;note&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The note above is quite self descriptive. It has sender and receiver information, it also has a heading and a message body.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;But still, this XML document does not DO anything. It is just pure information wrapped in tags. Someone must write a piece of software to send, receive or display it.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font style=&quot;background-color: #666666&quot; color=&quot;#00ff00&quot; size=&quot;6&quot;&gt;&lt;em&gt;XML is Just Plain Text&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML is nothing special. It is just plain text. Software that can handle plain text can also handle XML. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;However, XML-aware applications can handle the XML tags specially. The functional meaning of the tags depends on the nature of the application.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font style=&quot;background-color: #ffff00&quot; color=&quot;#4f81bd&quot; size=&quot;5&quot;&gt;&lt;em&gt;With XML You Invent Your Own Tags&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The tags in the example above (like &amp;lt;to&amp;gt; and &amp;lt;from&amp;gt;) are not defined in any XML standard. These tags are &amp;quot;invented&amp;quot; by the author of the XML document.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;That is because the XML language has no predefined tags.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The tags used in HTML (and the structure of HTML) are predefined. HTML documents can only use tags defined in the HTML standard (like &amp;lt;p&amp;gt;, &amp;lt;h1&amp;gt;, etc.).&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML allows the author to define his own tags and his own document structure.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font style=&quot;background-color: #dfce04&quot; color=&quot;#0000ff&quot; size=&quot;5&quot;&gt;&lt;em&gt;XML is Not a Replacement for HTML&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML is a complement (pelengkap) to HTML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;It is important to understand that XML is not a replacement for HTML. In most web applications, XML is used to transport data, while HTML is used to format and display the data.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;My best description of XML is this:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;XML is a software and hardware independent tool for carrying information.&lt;br /&gt;    &lt;br clear=&quot;all&quot; /&gt;&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font style=&quot;background-color: #9b00d3&quot; size=&quot;4&quot;&gt;&lt;em&gt;XML is a W3C Recommendation&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The Extensible Markup Language (XML) became a W3C Recommendation 10. February 1998.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font style=&quot;background-color: #9bbb59&quot; color=&quot;#666666&quot; size=&quot;6&quot;&gt;&lt;em&gt;XML is Everywhere&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;We have been participating in XML development since its creation. It has been amazing to see how quickly the XML standard has developed and how quickly a large number of software vendors have adopted the standard.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML is now as important for the Web as HTML was to the foundation of the Web.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML is everywhere. It is the most common tool for data transmissions between all sorts of applications, and becomes more and more popular in the area of storing and describing information.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;How Can XML be Used?&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML is used in many aspects of web development, often to simplify data storage and sharing.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font style=&quot;background-color: #8064a2&quot; size=&quot;5&quot;&gt;&lt;em&gt;XML Separates Data from HTML&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If you need to display dynamic data in your HTML document, it will take a lot of work to edit the HTML each time the data changes.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;With XML, data can be stored in separate XML files. This way you can concentrate on using HTML for layout and display, and be sure that changes in the underlying data will not require any changes to the HTML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;With a few lines of JavaScript, you can read an external XML file and update the data content of your HTML. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;You will learn more about this in a later chapter of this tutorial.&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font style=&quot;background-color: #dfce04&quot; color=&quot;#9e7c7c&quot; size=&quot;6&quot;&gt;XML Simplifies Data Sharing&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In the real world, computer systems and databases contain data in incompatible formats.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML data is stored in plain text format. This provides a software- and hardware-independent way of storing data.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;This makes it much easier to create data that different applications can share.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font style=&quot;background-color: #4f81bd&quot; color=&quot;#00ff00&quot; size=&quot;6&quot;&gt;XML Simplifies Data Transport&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;With XML, data can easily be exchanged between incompatible systems.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;One of the most time-consuming challenges for developers is to exchange data between incompatible systems over the Internet.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Exchanging data as XML greatly reduces this complexity, since the data can be read by different incompatible applications.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font style=&quot;background-color: #4bacc6&quot; size=&quot;6&quot;&gt;XML Simplifies Platform Changes&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Upgrading to new systems (hardware or software platforms), is always very time consuming. Large amounts of data must be converted and incompatible data is often lost.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML data is stored in text format. This makes it easier to expand or upgrade to new operating systems, new applications, or new browsers, without losing data.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;5&quot;&gt;&lt;em&gt;XML Makes Your Data More Available&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Since XML is independent of hardware, software and application, XML can make your data more available and useful.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Different applications can access your data, not only in HTML pages, but also from XML data sources.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;With XML, your data can be available to all kinds of &amp;quot;reading machines&amp;quot; (Handheld computers, voice machines, news feeds, etc), and make it more available for blind people, or people with other disabilities.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font style=&quot;background-color: #4bacc6&quot; color=&quot;#00ff00&quot; size=&quot;4&quot;&gt;&lt;em&gt;XML is Used to Create New Internet Languages&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;A lot of new Internet languages are created with XML. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Here are some examples:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;  &lt;li&gt;XHTML the latest version of HTML&amp;#160; &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;WSDL for describing available web services &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;WAP and WML as markup languages for handheld devices &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;RSS languages for news feeds &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;RDF and OWL for describing resources and ontology &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;SMIL for describing multimedia for the web &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font style=&quot;background-color: #00ff00&quot; color=&quot;#ffff00&quot;&gt;&lt;em&gt;If Developers Have Sense&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;If they DO have sense, future applications will exchange their data in XML.&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The future might give us word processors, spreadsheet applications and databases that can read each other&#39;s data in a pure text format, without any conversion utilities in between.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;We can only pray that all the software vendors will agree.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;&lt;font style=&quot;background-color: #f79646&quot; color=&quot;#00ff00&quot; size=&quot;7&quot;&gt;XML Tree&lt;/font&gt;&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML documents form a tree structure that starts at &amp;quot;the root&amp;quot; and branches to &amp;quot;the leaves&amp;quot;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;An Example XML Document&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML documents use a self-describing and simple syntax:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;ISO-8859-1&amp;quot;?&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;note&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The first line is the XML declaration. It defines the XML version (1.0) and the encoding used (ISO-8859-1 = Latin-1/West European character set). &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The next line describes the &lt;b&gt;root element &lt;/b&gt;of the document (like saying: &amp;quot;this document is a note&amp;quot;): &lt;br /&gt;&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;note&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The next 4 lines describe 4 &lt;b&gt;child elements&lt;/b&gt; of the root (to, from, heading, and body):&lt;br /&gt;&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;And finally the last line defines the end of the root element:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;You can assume, from this example, that the XML document contains a note to Tove from Jani.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Don&#39;t you agree that XML is pretty self-descriptive?&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Documents Form a Tree Structure&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML documents must contain a &lt;b&gt;root element&lt;/b&gt;. This element is &amp;quot;the parent&amp;quot; of all other elements.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The elements in an XML document form a document tree. The tree starts at the root and branches to the lowest level of the tree.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;All elements can have sub elements (child elements):&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;root&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;child&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;subchild&amp;gt;.....&amp;lt;/subchild&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;/child&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/root&amp;gt; &lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The terms parent, child, and sibling (saudara kandung) are used to describe the relationships between elements. Parent elements have children. Children on the same level are called siblings (brothers or sisters).&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;All elements can have text content and attributes (just like in HTML).&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr align=&quot;center&quot; size=&quot;2&quot; width=&quot;100%&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Example:&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The image above represents one book in the XML below:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;bookstore&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;book category=&amp;quot;COOKING&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;title lang=&amp;quot;en&amp;quot;&amp;gt;Everyday Italian&amp;lt;/title&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;author&amp;gt;Giada De Laurentiis&amp;lt;/author&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;year&amp;gt;2005&amp;lt;/year&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;price&amp;gt;30.00&amp;lt;/price&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/book&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;book category=&amp;quot;CHILDREN&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;title lang=&amp;quot;en&amp;quot;&amp;gt;Harry Potter&amp;lt;/title&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;author&amp;gt;J K. Rowling&amp;lt;/author&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;year&amp;gt;2005&amp;lt;/year&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;price&amp;gt;29.99&amp;lt;/price&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/book&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;book category=&amp;quot;WEB&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;title lang=&amp;quot;en&amp;quot;&amp;gt;Learning XML&amp;lt;/title&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;author&amp;gt;Erik T. Ray&amp;lt;/author&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;year&amp;gt;2003&amp;lt;/year&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;price&amp;gt;39.95&amp;lt;/price&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/book&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/bookstore&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The root element in the example is &amp;lt;bookstore&amp;gt;. All &amp;lt;book&amp;gt; elements in the document are contained within &amp;lt;bookstore&amp;gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The &amp;lt;book&amp;gt; element has 4 children: &amp;lt;title&amp;gt;,&amp;lt; author&amp;gt;, &amp;lt;year&amp;gt;, &amp;lt;price&amp;gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;&lt;font style=&quot;background-color: #0000ff&quot; color=&quot;#ff0000&quot; size=&quot;6&quot;&gt;&lt;em&gt;XML Syntax Rules&lt;/em&gt;&lt;/font&gt;&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The syntax rules of XML are very simple and logical. The rules are easy to learn, and easy to use.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;All XML Elements Must Have a Closing Tag&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In HTML, you will often see elements that don&#39;t have a closing tag:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;p&amp;gt;This is a paragraph&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;p&amp;gt;This is another paragraph&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In XML, it is illegal to omit the closing tag. All elements &lt;b&gt;must&lt;/b&gt; have a closing tag:&lt;br /&gt;&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;p&amp;gt;This is a paragraph&amp;lt;/p&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;p&amp;gt;This is another paragraph&amp;lt;/p&amp;gt; &lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Note&lt;/b&gt;: You might have noticed from the previous example that the XML declaration did not have a closing tag. This is not an error. The declaration is not a part of the XML document itself, and it has no closing tag.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Tags are Case Sensitive&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML elements are defined using XML tags.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML tags are case sensitive. With XML, the tag &amp;lt;Letter&amp;gt; is different from the tag &amp;lt;letter&amp;gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Opening and closing tags must be written with the same case:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;Message&amp;gt;This is incorrect&amp;lt;/message&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;message&amp;gt;This is correct&amp;lt;/message&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; &amp;quot;Opening and closing tags&amp;quot; are often referred to as &amp;quot;Start and end tags&amp;quot;. Use whatever you prefer. It is exactly the same thing.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font size=&quot;5&quot;&gt;&lt;em&gt;XML Elements Must be Properly Nested&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In HTML, you will often see improperly nested elements:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;b&amp;gt;&amp;lt;i&amp;gt;This text is bold and italic&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In XML, all elements &lt;b&gt;must&lt;/b&gt; be properly nested within each other:&lt;br /&gt;&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;b&amp;gt;&amp;lt;i&amp;gt;This text is bold and italic&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In the example above, &amp;quot;Properly nested&amp;quot; simply means that since the &amp;lt;i&amp;gt; element is opened inside the &amp;lt;b&amp;gt; element, it must be closed inside the &amp;lt;b&amp;gt; element.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;em&gt;&lt;font size=&quot;5&quot;&gt;XML Documents Must Have a Root Element&lt;/font&gt;&lt;/em&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML documents must contain one element that is the &lt;b&gt;parent&lt;/b&gt; of all other elements. This element is called the &lt;b&gt;root&lt;/b&gt; element.&lt;br /&gt;&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;root&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;child&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;subchild&amp;gt;.....&amp;lt;/subchild&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;/child&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/root&amp;gt; &lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;em&gt;&lt;font size=&quot;5&quot;&gt;XML Attribute Values Must be Quoted&lt;/font&gt;&lt;/em&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML elements can have attributes in name/value pairs just like in HTML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In XML the attribute value must always be quoted. Study the two XML documents below. The first one is incorrect, the second is correct:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;note date=12/11/2007&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;note date=&amp;quot;12/11/2007&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The error in the first document is that the date attribute in the note element is not quoted.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font color=&quot;#00ff00&quot; size=&quot;5&quot;&gt;&lt;em&gt;Entity References&lt;/em&gt;&lt;/font&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Some characters have a special meaning in XML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If you place a character like &amp;quot;&amp;lt;&amp;quot; inside an XML element, it will generate an error because the parser interprets it as the start of a new element.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;This will generate an XML error:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;message&amp;gt;if salary &amp;lt; 1000 then&amp;lt;/message&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;To avoid this error, replace the &amp;quot;&amp;lt;&amp;quot; character with an &lt;b&gt;entity reference&lt;/b&gt;:&lt;br /&gt;&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;message&amp;gt;if salary &amp;amp;lt; 1000 then&amp;lt;/message&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;There are 5 predefined entity references in XML:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&amp;amp;lt;&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt; &lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;less than&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&amp;amp;gt;&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&amp;gt; &lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;greater than&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&amp;amp;amp;&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&amp;amp;&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;ampersand &lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&amp;amp;apos;&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&#39;&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;apostrophe&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&amp;amp;quot;&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&amp;quot;&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;quotation mark&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; Only the characters &amp;quot;&amp;lt;&amp;quot; and &amp;quot;&amp;amp;&amp;quot; are strictly illegal in XML. The greater than character is legal, but it is a good habit to replace it. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Comments in XML&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The syntax for writing comments in XML is similar to that of HTML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&amp;lt;!-- This is a comment --&amp;gt; &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;With XML, White Space is Preserved&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;HTML reduces multiple white space characters to a single white space:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;HTML: &lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;Hello&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; my name is Tove &lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;Output: &lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;Hello my name is Tove.&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;With XML, the white space in your document is not truncated.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Stores New Line as LF&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In Windows applications, a new line is normally stored as a pair of characters: carriage return (CR) and line feed (LF). The character pair bears some resemblance (kemiripan) to the typewriter actions of setting a new line. In Unix applications, a new line is normally stored as a LF character. Macintosh applications use only a CR character to store a new line.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;XML Elements&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;An XML document contains XML Elements.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;What is an XML Element?&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;An &lt;b&gt;XML element&lt;/b&gt; is everything from (including) the element&#39;s start tag to (including) the element&#39;s end tag.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;An element can contain other elements, simple text or a mixture of both. Elements can also have attributes.&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;bookstore&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;book category=&amp;quot;CHILDREN&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;title&amp;gt;Harry Potter&amp;lt;/title&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;author&amp;gt;J K. Rowling&amp;lt;/author&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;year&amp;gt;2005&amp;lt;/year&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;price&amp;gt;29.99&amp;lt;/price&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/book&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;book category=&amp;quot;WEB&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;title&amp;gt;Learning XML&amp;lt;/title&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;author&amp;gt;Erik T. Ray&amp;lt;/author&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;year&amp;gt;2003&amp;lt;/year&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;price&amp;gt;39.95&amp;lt;/price&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/book&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/bookstore&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In the example above, &amp;lt;bookstore&amp;gt; and &amp;lt;book&amp;gt; have &lt;b&gt;element contents&lt;/b&gt;, because they contain other elements. &amp;lt;author&amp;gt; has &lt;b&gt;text content&lt;/b&gt; because it contains text.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In the example above only &amp;lt;book&amp;gt; has an &lt;b&gt;attribute&lt;/b&gt; (category=&amp;quot;CHILDREN&amp;quot;).&amp;#160; &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Naming Rules&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML elements must follow these naming rules:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;  &lt;li&gt;Names can contain letters, numbers, and other characters &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;Names must not start with a number or punctuation character &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;Names must not start with the letters xml (or XML, or Xml, etc) &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;Names cannot contain spaces &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Any name can be used, no words are reserved.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Best Naming Practices&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Make names descriptive. Names with an underscore separator are nice: &amp;lt;first_name&amp;gt;, &amp;lt;last_name&amp;gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Names should be short and simple, like this: &amp;lt;book_title&amp;gt; not like this: &amp;lt;the_title_of_the_book&amp;gt;. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Avoid &amp;quot;-&amp;quot; characters. If you name something &amp;quot;first-name,&amp;quot; some software may think you want to subtract name from first.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Avoid &amp;quot;.&amp;quot; characters. If you name something &amp;quot;first.name,&amp;quot; some software may think that &amp;quot;name&amp;quot; is a property of the object &amp;quot;first.&amp;quot;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Avoid &amp;quot;:&amp;quot; characters. Colons are reserved to be used for something called namespaces (more later).&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML documents often have a corresponding database. A good practice is to use the naming rules of your database for the elements in the XML documents.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Non-English letters like éòá are perfectly legal in XML, but watch out for problems if your software vendor doesn&#39;t support them.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Elements are Extensible&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML elements can be extended to carry more information.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Look at the following XML example:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;note&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Let&#39;s imagine that we created an application that extracted the &amp;lt;to&amp;gt;, &amp;lt;from&amp;gt;, and &amp;lt;body&amp;gt; elements from the XML document to produce this output:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&lt;b&gt;MESSAGE&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&lt;b&gt;To:&lt;/b&gt; Tove&lt;br /&gt;&lt;br /&gt;            &lt;br /&gt;&lt;b&gt;From:&lt;/b&gt; Jani&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;Don&#39;t forget me this weekend!&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Imagine that the author of the XML document added some extra information to it:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;note&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;date&amp;gt;2008-01-10&amp;lt;/date&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Should the application break or crash?&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;No. The application should still be able to find the &amp;lt;to&amp;gt;, &amp;lt;from&amp;gt;, and &amp;lt;body&amp;gt; elements in the XML document and produce the same output.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;One of the beauties of XML, is that it can often be extended without breaking applications.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;XML Attributes&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML elements can have attributes in the start tag, just like HTML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Attributes provide additional information about elements.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Attributes&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;From HTML you will remember this: &amp;lt;img src=&amp;quot;computer.gif&amp;quot;&amp;gt;. The &amp;quot;src&amp;quot; attribute provides additional information about the &amp;lt;img&amp;gt; element.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In HTML (and in XML) attributes provide additional information about elements:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;img src=&amp;quot;computer.gif&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;a href=&amp;quot;demo.asp&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Attributes often provide information that is not a part of the data. In the example below, the file type is irrelevant to the data, but important to the software that wants to manipulate the element:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;file type=&amp;quot;gif&amp;quot;&amp;gt;computer.gif&amp;lt;/file&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Attributes Must be Quoted&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Attribute values must always be enclosed in quotes, but either single or double quotes can be used. For a person&#39;s sex, the person tag can be written like this: &lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;person sex=&amp;quot;female&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;or like this: &lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;person sex=&#39;female&#39;&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If the attribute value itself contains double quotes you can use single quotes, like in this example:&amp;#160; &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;gangster name=&#39;George &amp;quot;Shotgun&amp;quot; Ziegler&#39;&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;or you can use character entities:&amp;#160; &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;gangster name=&amp;quot;George &amp;amp;quot;Shotgun&amp;amp;quot; Ziegler&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Elements vs. Attributes&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Take a look at these examples:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;person sex=&amp;quot;female&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;firstname&amp;gt;Anna&amp;lt;/firstname&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;lastname&amp;gt;Smith&amp;lt;/lastname&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/person&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;person&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;sex&amp;gt;female&amp;lt;/sex&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;firstname&amp;gt;Anna&amp;lt;/firstname&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;lastname&amp;gt;Smith&amp;lt;/lastname&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/person&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In the first example sex is an attribute. In the last, sex is an element. Both examples provide the same information.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;There are no rules about when to use attributes and when to use elements. Attributes are handy in HTML. In XML my advice is to avoid them. Use elements instead.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;My Favorite Way&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The following three XML documents contain exactly the same information: &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;A date attribute is used in the first example: &lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;note date=&amp;quot;10/01/2008&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;A date element is used in the second example:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;note&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;date&amp;gt;10/01/2008&amp;lt;/date&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;An expanded date element is used in the third: (THIS IS MY FAVORITE):&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;note&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;date&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;day&amp;gt;10&amp;lt;/day&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;month&amp;gt;01&amp;lt;/month&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;year&amp;gt;2008&amp;lt;/year&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/date&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt; &lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;font size=&quot;6&quot;&gt;Avoid XML Attributes?&lt;/font&gt; &lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Some of the problems with using attributes are: &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;  &lt;li&gt;attributes cannot contain multiple values (elements can) &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;attributes cannot contain tree structures (elements can) &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;attributes are not easily expandable (for future changes) &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Attributes are difficult to read and maintain. Use elements for data. Use attributes for information that is not relevant to the data.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Don&#39;t end up like this:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;note day=&amp;quot;10&amp;quot; month=&amp;quot;01&amp;quot; year=&amp;quot;2008&amp;quot;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;to=&amp;quot;Tove&amp;quot; from=&amp;quot;Jani&amp;quot; heading=&amp;quot;Reminder&amp;quot; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;body=&amp;quot;Don&#39;t forget me this weekend!&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt; &lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Attributes for Metadata&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Sometimes ID references are assigned to elements. These IDs can be used to identify XML elements in much the same way as the ID attribute in HTML. This example demonstrates this:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;messages&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;note id=&amp;quot;501&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;/note&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;note id=&amp;quot;502&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;to&amp;gt;Jani&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;from&amp;gt;Tove&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;heading&amp;gt;Re: Reminder&amp;lt;/heading&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;body&amp;gt;I will not&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;/note&amp;gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/messages&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The ID above is just an identifier, to identify the different notes. It is not a part of the note itself.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;What I&#39;m trying to say here is that metadata (data about data) should be stored as attributes, and that data itself should be stored as elements.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;XML Validation&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML with correct syntax is &amp;quot;Well Formed&amp;quot; XML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML validated against a DTD is &amp;quot;Valid&amp;quot; XML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Well Formed XML Documents&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;A &amp;quot;Well Formed&amp;quot; XML document has correct XML syntax.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The syntax rules were described in the previous chapters:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;  &lt;li&gt;XML documents must have a root element &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;XML elements must have a closing tag &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;XML tags are case sensitive &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;XML elements must be properly nested &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;XML attribute values must be quoted &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;    &lt;tr&gt;&lt;br /&gt;      &lt;td&gt;&lt;br /&gt;        &lt;pre&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;ISO-8859-1&amp;quot;?&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;        &lt;pre&gt;&amp;lt;note&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;        &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;        &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;        &lt;pre&gt;&amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;        &lt;pre&gt;&amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;        &lt;pre&gt;&amp;lt;/note&amp;gt;&lt;/pre&gt;&lt;br /&gt;      &lt;/td&gt;&lt;br /&gt;    &lt;/tr&gt;&lt;br /&gt;  &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Valid XML Documents&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;A &amp;quot;Valid&amp;quot; XML document is a &amp;quot;Well Formed&amp;quot; XML document, which also conforms to the rules of a Document Type Definition (DTD):&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;ISO-8859-1&amp;quot;?&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;!DOCTYPE note SYSTEM &amp;quot;Note.dtd&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;note&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/note&amp;gt; &lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The DOCTYPE declaration in the example above, is a reference to an external DTD file. The content of the file is shown in the paragraph below.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML DTD &lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The purpose of a DTD is to define the structure of an XML document. It defines the structure with a list of legal elements:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;!DOCTYPE note [&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;!ELEMENT note (to,from,heading,body)&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;!ELEMENT to&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; (#PCDATA)&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;!ELEMENT from&amp;#160;&amp;#160;&amp;#160; (#PCDATA)&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;!ELEMENT heading (#PCDATA)&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;!ELEMENT body&amp;#160;&amp;#160;&amp;#160; (#PCDATA)&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;]&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If you want to study DTD, you will find our DTD tutorial on our &lt;a href=&quot;http://www.w3schools.com/default.asp&quot;&gt;homepage&lt;/a&gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Schema&amp;#160; &lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;W3C supports an XML based alternative to DTD called XML Schema:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;xs:element name=&amp;quot;note&amp;quot;&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;xs:complexType&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;xs:sequence&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;xs:element name=&amp;quot;to&amp;quot;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; type=&amp;quot;xs:string&amp;quot;/&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;xs:element name=&amp;quot;from&amp;quot;&amp;#160;&amp;#160;&amp;#160; type=&amp;quot;xs:string&amp;quot;/&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;xs:element name=&amp;quot;heading&amp;quot; type=&amp;quot;xs:string&amp;quot;/&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;xs:element name=&amp;quot;body&amp;quot;&amp;#160;&amp;#160;&amp;#160; type=&amp;quot;xs:string&amp;quot;/&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;/xs:sequence&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/xs:complexType&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/xs:element&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If you want to study XML Schema, you will find our Schema tutorial on our &lt;a href=&quot;http://www.w3schools.com/default.asp&quot;&gt;homepage&lt;/a&gt;. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;A General XML Validator&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;To help you check the syntax of your XML files, we have created an XML validator to syntax-check your XML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Please see the next chapter.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;XML Validator&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Use our XML validator to syntax-check your XML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Errors Will Stop You &lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Errors in XML documents will stop your XML applications. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The W3C XML specification states that a program should stop processing an XML document if it finds an error. The reason is that XML software should be small, fast, and compatible. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;HTML browsers will display documents with errors (like missing end tags). HTML browsers are big and incompatible because they have a lot of unnecessary code to deal with (and display) HTML errors. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;With XML, errors are not allowed.&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Syntax-Check Your XML&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;To help you syntax-check your XML, we have created an XML validator.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Paste your XML into the text area below, and syntax-check it by clicking the &amp;quot;Validate&amp;quot; button.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; ?&amp;gt; &amp;lt;note&amp;gt; &amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt; &amp;lt;from&amp;gt;Jani&amp;lt;/Ffrom&amp;gt; &amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt; &amp;lt;body&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/body&amp;gt; &amp;lt;/note&amp;gt; &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; This only checks if your XML is &amp;quot;Well formed&amp;quot;. If you want to validate your XML against a DTD, see the last paragraph on this page.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Syntax-Check an XML File&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;You can syntax-check an XML file by typing the URL of the file into the input field below, and then click the &amp;quot;Validate&amp;quot; button:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Filename:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; If you get an &amp;quot;Access denied&amp;quot; error, it&#39;s because your browser security does not allow file access across domains.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The file &amp;quot;note_error.xml&amp;quot; demonstrates your browsers error handling. If you want see an error free message, substitute the &amp;quot;note_error.xml&amp;quot; with &amp;quot;cd_catalog.xml&amp;quot;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Validate Your XML Against a DTD&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If you know DTD, you can validate your XML in the text area below.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Just add the DOCTYPE declaration to your XML and click the &amp;quot;Validate&amp;quot; button:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; ?&amp;gt; &amp;lt;!DOCTYPE note [ &amp;lt;!ELEMENT note (to,from,heading,body)&amp;gt; &amp;lt;!ELEMENT to (#PCDATA)&amp;gt; &amp;lt;!ELEMENT from (#PCDATA)&amp;gt; &amp;lt;!ELEMENT heading (#PCDATA)&amp;gt; &amp;lt;!ELEMENT body (#PCDATA)&amp;gt; ]&amp;gt; &amp;lt;note&amp;gt; &amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt; &amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt; &amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt; &amp;lt;message&amp;gt;Don&#39;t forget me this weekend!&amp;lt;/message&amp;gt; &amp;lt;/note&amp;gt; &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; Only Internet Explorer will actually check your XML against the DTD. Firefox, Mozilla, Netscape, and Opera will not.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Viewing XML Files&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Raw XML files can be viewed in all major browsers.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Don&#39;t expect XML files to be displayed as HTML pages.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Viewing XML Files&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;    &lt;tr&gt;&lt;br /&gt;      &lt;td&gt;&lt;br /&gt;        &lt;p&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;ISO-8859-1&amp;quot;?&amp;gt; &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;        &lt;p&gt; - &amp;lt;note&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;        &lt;p&gt;&amp;lt;to&amp;gt;&lt;b&gt;Tove&lt;/b&gt;&amp;lt;to&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;        &lt;p&gt;&amp;lt;from&amp;gt;&lt;b&gt;Jani&lt;/b&gt;&amp;lt;from&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;        &lt;p&gt;&amp;lt;heading&amp;gt;&lt;b&gt;Reminder&lt;/b&gt;&amp;lt;heading&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;        &lt;p&gt;&amp;lt;body&amp;gt;&lt;b&gt;Don&#39;t forget me this weekend!&lt;/b&gt;&amp;lt;body&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;        &lt;p&gt;&amp;lt;note&amp;gt;&lt;/p&gt;&lt;br /&gt;      &lt;/td&gt;&lt;br /&gt;    &lt;/tr&gt;&lt;br /&gt;  &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Look at this XML file: &lt;a href=&quot;http://www.w3schools.com/xml/note.xml&quot;&gt;note.xml&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The XML document will be displayed with color-coded root and child elements. A plus (+) or minus sign (-) to the left of the elements can be clicked to expand or collapse the element structure. To view the raw XML source (without the + and - signs), select &amp;quot;View Page Source&amp;quot; or &amp;quot;View Source&amp;quot; from the browser menu.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; In Netscape, Opera, and Safari, only the element text will be displayed. To view the raw XML, you must right click the page and select &amp;quot;View Source&amp;quot;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Viewing an Invalid XML File&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If an erroneous XML file is opened, the browser will report the error.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Look at this XML file: &lt;a href=&quot;http://www.w3schools.com/xml/note_error.xml&quot;&gt;note_error.xml&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Other XML Examples&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Viewing some XML documents will help you get the XML feeling. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href=&quot;http://www.w3schools.com/xml/cd_catalog.xml&quot;&gt;An XML CD catalog&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br /&gt;This is a CD collection, stored as XML data. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href=&quot;http://www.w3schools.com/xml/plant_catalog.xml&quot;&gt;An XML plant catalog&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br /&gt;This is a plant catalog from a plant shop, stored as XML data. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href=&quot;http://www.w3schools.com/xml/simple.xml&quot;&gt;A Simple Food Menu&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br /&gt;This is a breakfast food menu from a restaurant, stored as XML data. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Why Does XML Display Like This?&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML documents do not carry information about how to display the data.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Since XML tags are &amp;quot;invented&amp;quot; by the author of the XML document, browsers do not know if a tag like &amp;lt;table&amp;gt; describes an HTML table or a dining table.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Without any information about how to display the data, most browsers will just display the XML document as it is.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In the next chapters, we will take a look at different solutions to the display problem, using CSS, XSLT and JavaScript.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Displaying XML with CSS&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;With CSS (Cascading Style Sheets) you can add display information to an XML document.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Displaying your XML Files with CSS?&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;It is possible to use CSS to format an XML document.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Below is an example of how to use a CSS style sheet to format an XML document:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Take a look at this XML file: &lt;a href=&quot;http://www.w3schools.com/xml/cd_catalog.xml&quot;&gt;The CD catalog&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Then look at this style sheet: &lt;a href=&quot;http://www.w3schools.com/xml/cd_catalog.txt&quot;&gt;The CSS file&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Finally, view: &lt;a href=&quot;http://www.w3schools.com/xml/cd_catalog_with_css.xml&quot;&gt;The CD catalog formatted with the CSS file&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Below is a fraction of the XML file. The second line links the XML file to the CSS file:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;ISO-8859-1&amp;quot;?&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;?xml-stylesheet type=&amp;quot;text/css&amp;quot; href=&amp;quot;cd_catalog.css&amp;quot;?&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;CATALOG&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;CD&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;TITLE&amp;gt;Empire Burlesque&amp;lt;/TITLE&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;ARTIST&amp;gt;Bob Dylan&amp;lt;/ARTIST&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;COUNTRY&amp;gt;USA&amp;lt;/COUNTRY&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;COMPANY&amp;gt;Columbia&amp;lt;/COMPANY&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;PRICE&amp;gt;10.90&amp;lt;/PRICE&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;YEAR&amp;gt;1985&amp;lt;/YEAR&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;/CD&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;CD&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;TITLE&amp;gt;Hide your heart&amp;lt;/TITLE&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;ARTIST&amp;gt;Bonnie Tyler&amp;lt;/ARTIST&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;COUNTRY&amp;gt;UK&amp;lt;/COUNTRY&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;COMPANY&amp;gt;CBS Records&amp;lt;/COMPANY&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;PRICE&amp;gt;9.90&amp;lt;/PRICE&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;YEAR&amp;gt;1988&amp;lt;/YEAR&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;/CD&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;.&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;.&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;.&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;.&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/CATALOG&amp;gt;&amp;#160;&amp;#160; &lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Formatting XML with CSS is not the most common method.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;W3C recommend using XSLT instead. See the next chapter.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Displaying XML with XSLT&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;With XSLT you can transform an XML document into HTML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Displaying XML with XSLT&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XSLT is the recommended style sheet language of XML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XSLT (eXtensible Stylesheet Language Transformations) is far more sophisticated than CSS. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;One way to use XSLT is to transform XML into HTML before it is displayed by the browser as demonstrated in these examples:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href=&quot;http://www.w3schools.com/xml/simple.xml&quot;&gt;View the XML file&lt;/a&gt;, &lt;a href=&quot;http://www.w3schools.com/xml/simple.xsl&quot;&gt;the XSLT style sheet&lt;/a&gt;, and &lt;a href=&quot;http://www.w3schools.com/xml/simplexsl.xml&quot;&gt;View the result&lt;/a&gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Below is a fraction of the XML file. The second line links the XML file to the XSLT file:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;ISO-8859-1&amp;quot;?&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;?xml-stylesheet type=&amp;quot;text/xsl&amp;quot; href=&amp;quot;simple.xsl&amp;quot;?&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;breakfast_menu&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;food&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;name&amp;gt;Belgian Waffles&amp;lt;/name&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;price&amp;gt;$5.95&amp;lt;/price&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;description&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; two of our famous Belgian Waffles&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;/description&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;calories&amp;gt;650&amp;lt;/calories&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;#160; &amp;lt;/food&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;&amp;lt;/breakfast_menu&amp;gt;&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If you want to learn more about XSLT, find our XSLT tutorial on our &lt;a href=&quot;http://www.w3schools.com/default.asp&quot;&gt;homepage&lt;/a&gt;. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr align=&quot;center&quot; size=&quot;2&quot; width=&quot;100%&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Transforming XML with XSLT on the Server&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In the example above, the XSLT transformation is done by the browser, when the browser reads the XML file.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Different browsers may produce different result when transforming XML with XSLT. To reduce this problem the XSLT transformation can be done on the server. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href=&quot;http://www.w3schools.com/xml/simple.asp&quot;&gt;View the result&lt;/a&gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Note that the result of the output is exactly the same, either the transformation is done by the web server or by the web browser.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;XML JAVASCRIPT&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;XML Parser&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr align=&quot;center&quot; size=&quot;2&quot; width=&quot;100%&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Most browsers have a build-in XML parser to read and manipulate XML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The parser converts XML into a JavaScript accessible object. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr align=&quot;center&quot; size=&quot;2&quot; width=&quot;100%&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Examples&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;W3Schools examples are browser and platform independent. These examples work in all modern browsers.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href=&quot;http://www.w3schools.com/xml/tryit.asp?filename=tryxml_parsertest&quot;&gt;Load and parse an XML file&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href=&quot;http://www.w3schools.com/xml/tryit.asp?filename=tryxml_parsertest2&quot;&gt;Load and parse an XML string&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr align=&quot;center&quot; size=&quot;2&quot; width=&quot;100%&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Parsing XML&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;All modern browsers have a build-in XML parser that can be used to read and manipulate XML.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The parser reads XML into memory and converts it into an XML DOM object that can be accesses with JavaScript. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;You will learn more about the XML DOM in the next chapter of this tutorial.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;There are some differences between Microsoft&#39;s XML parser and the parsers used in other browsers. The Microsoft parser supports loading of both XML files and XML strings (text), while other browsers use separate parsers. However, all parsers contain functions to traverse XML trees, access, insert, and delete nodes (elements) and their attributes. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In this tutorial we will show you how to create scripts that will work in both Internet Explorer and other browsers.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; When we talk about parsing XML, we often use the term &amp;quot;Nodes&amp;quot; about XML elements.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr align=&quot;center&quot; size=&quot;2&quot; width=&quot;100%&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Loading XML with Microsoft&#39;s XML Parser&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Microsoft&#39;s XML parser is built into Internet Explorer 5 and higher.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The following JavaScript fragment loads an XML document (&amp;quot;note.xml&amp;quot;) into the parser:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;var xmlDoc=new ActiveXObject(&amp;quot;Microsoft.XMLDOM&amp;quot;);&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;xmlDoc.async=&amp;quot;false&amp;quot;;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;xmlDoc.load(&amp;quot;note.xml&amp;quot;);&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Example explained:&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;  &lt;li&gt;The first line of the script above creates an empty Microsoft XML document object. &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;The second line turns off asynchronized loading, to make sure that the parser will not continue execution of the script before the document is fully loaded. &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;The third line tells the parser to load an XML document called &amp;quot;note.xml&amp;quot;. &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The following JavaScript fragment loads a string called txt into the parser:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;var xmlDoc=new ActiveXObject(&amp;quot;Microsoft.XMLDOM&amp;quot;);&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;xmlDoc.async=&amp;quot;false&amp;quot;;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;xmlDoc.loadXML(txt);&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; The &lt;b&gt;loadXML()&lt;/b&gt; method is used for loading strings (text), &lt;b&gt;load()&lt;/b&gt; is used for loading files.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr align=&quot;center&quot; size=&quot;2&quot; width=&quot;100%&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;XML Parser in Firefox and Other Browsers&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The following JavaScript fragment loads an XML document (&amp;quot;note.xml&amp;quot;) into the parser:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;var xmlDoc=document.implementation.createDocument(&amp;quot;&amp;quot;,&amp;quot;&amp;quot;,null);&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;xmlDoc.async=&amp;quot;false&amp;quot;;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;xmlDoc.load(&amp;quot;note.xml&amp;quot;);&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Example explained:&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;  &lt;li&gt;The first line of the script above creates an empty XML document object. &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;The second line turns off asynchronized loading, to make sure that the parser will not continue execution of the script before the document is fully loaded. &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;The third line tells the parser to load an XML document called &amp;quot;note.xml&amp;quot;. &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The following JavaScript fragment loads a string called txt into the parser:&lt;br /&gt;  &lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;pre&gt;var parser=new DOMParser();&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;          &lt;pre&gt;var doc=parser.parseFromString(txt,&amp;quot;text/xml&amp;quot;);&lt;/pre&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Example explained:&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;  &lt;li&gt;The first line of the script above creates an empty XML document object. &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;li&gt;The second line tells the parser to load a string called txt. &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; Internet Explorer uses the loadXML() method to parse an XML string, while other browsers uses the DOMParser object.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr align=&quot;center&quot; size=&quot;2&quot; width=&quot;100%&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Access Across Domains&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;For security reasons, modern browsers does not allow access across domains.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;This means, that both the web page and the XML file it tries to load, must be located on the same server.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The examples on W3Schools all open XML files located on the W3Schools domain.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If you want to use the example above on one of your web pages, the XML files you load must be located on your own server. Otherwise the xmlDoc.load() method, will generate the error &amp;quot;Access is denied&amp;quot;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr align=&quot;center&quot; size=&quot;2&quot; width=&quot;100%&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;The XML DOM&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;In the next chapter of this tutorial, you will learn how to access and retrieve data from the XML document object (the XML DOM).&lt;br /&gt;  &lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;br /&gt;      &lt;tr&gt;&lt;br /&gt;        &lt;td&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;html&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;head&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;function parseXML()&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;{&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;try //Internet Explorer&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;{&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;xmlDoc=new ActiveXObject(&amp;quot;Microsoft.XMLDOM&amp;quot;);&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;}&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;catch(e)&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;{&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;try //Firefox, Mozilla, Opera, etc.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;{&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;xmlDoc=document.implementation.createDocument(&amp;quot;&amp;quot;,&amp;quot;&amp;quot;,null);&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;}&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;catch(e)&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;{&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;alert(e.message);&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;return;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;}&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;}&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;xmlDoc.async=false;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;xmlDoc.load(&amp;quot;note.xml&amp;quot;);&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;document.getElementById(&amp;quot;to&amp;quot;).innerHTML=xmlDoc.getElementsByTagName(&amp;quot;to&amp;quot;)[0].childNodes[0].nodeValue;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;document.getElementById(&amp;quot;from&amp;quot;).innerHTML=xmlDoc.getElementsByTagName(&amp;quot;from&amp;quot;)[0].childNodes[0].nodeValue;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;document.getElementById(&amp;quot;message&amp;quot;).innerHTML=xmlDoc.getElementsByTagName(&amp;quot;body&amp;quot;)[0].childNodes[0].nodeValue;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;}&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;/script&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;/head&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;body onload=&amp;quot;parseXML()&amp;quot;&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;h1&amp;gt;W3Schools Internal Note&amp;lt;/h1&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;To:&amp;lt;/b&amp;gt; &amp;lt;span id=&amp;quot;to&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;b&amp;gt;From:&amp;lt;/b&amp;gt; &amp;lt;span id=&amp;quot;from&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;b&amp;gt;Message:&amp;lt;/b&amp;gt; &amp;lt;span id=&amp;quot;message&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;/p&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;/body&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;          &lt;p&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;&lt;br /&gt;        &lt;/td&gt;&lt;br /&gt;      &lt;/tr&gt;&lt;br /&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;source :&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a title=&quot;http://www.w3schools.com&quot; href=&quot;http://getsreviews.blogspot.com&quot;&gt;http://www.w3schools.com&lt;/a&gt;&lt;/p&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/4293829818694272823/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/basic-xml.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/4293829818694272823'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/4293829818694272823'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/basic-xml.html' title='BASIC XML'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFOXSA4g9js_BrkspNAVgTuQWXkKvE5zfCb9JSB9Me89kf9QhRWpRH9-3GVK0mOja_bxW1Uh3EBBzP7hnsY6EA1FXjjjaY5l6lic5_vXj6if5u8h-KoKqlW59m2kc4u4GdmKtwpB_qK5Q/s72-c?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-7833953367585720969</id><published>2011-04-29T07:26:00.000+07:00</published><updated>2011-04-29T07:28:19.776+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><title type='text'>laying JavaScript</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/04/laying-javascript.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;h4&gt;Where to Put the JavaScript&lt;/h4&gt;  &lt;p&gt;JavaScripts in a page will be executed immediately while the page loads into the browser. This is not always what we want. Sometimes we want to execute a script when a page loads, other times when a user triggers an event. &lt;/p&gt;  &lt;p&gt;&lt;b&gt;Scripts in the head section:&lt;/b&gt; Scripts to be executed when they are called, or when an event is triggered, go in the head section. When you place a script in the head section, you will ensure that the script is loaded before anyone uses it. &lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhnPZ9dAariQH86vrhHSFKqbcGshd0M5w7RW-Uxaqipi8j3bpFaAAw-KyNvhjVnrovy7yJIfcjNE6c0KFAn8YbA6kEOX1azMIGjOMajxjA6l1kA3GXT5iivQ1N3koPZ9wyvP7t0escilNM/s1600-h/clip_image001%5B5%5D.png&quot;&gt;&lt;img style=&quot;background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px&quot; title=&quot;Where to Put the JavaScript&quot; border=&quot;0&quot; alt=&quot;Where to Put the JavaScript&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlQZvSQm-p5GWDgJ8o8a1oXpZDhzTUHVqsT29Kev19SilvuLSEvH6ltLcAyYUbId6LQqwAeQhCEHv1O47I7i8I0J9PkxEQK1RUY4LE6eZiNHl-qP6-Hk6beNTA_Cv8o4okFOe9Mwrh-tk/?imgmax=800&quot; width=&quot;541&quot; height=&quot;113&quot; /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;b&gt;Scripts in the body section:&lt;/b&gt; Scripts to be executed when the page loads go in the body section. When you place a script in the body section it generates the content of the page. &lt;/p&gt;  &lt;a name=&#39;more&#39;&gt;&lt;/a&gt;    &lt;p&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjboLTkpgO7aK63anYE_Dp3qTos6m8lQAiTWtPa5d2UViUYnHtyER2FIByVR7F0GgXzqHYXW0ymQ33Ex1F_doTpg_1tnkm-x9gotv5aAkxhtnwziPJEqZDefYF93OUr4PwU6LbCCT28CGI/s1600-h/clip_image001%5B6%5D%5B4%5D.png&quot;&gt;&lt;img style=&quot;background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px&quot; title=&quot;Where to Put the JavaScript&quot; border=&quot;0&quot; alt=&quot;Where to Put the JavaScript&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUH9fy0RZt__TTlxPDIcyDuUwq_rx8qoiJZVKqGZQnR0Q2Y_xV3kxMkHC9mHs1ssH3oVvw_SJ_VM7K28nQCtAWQHvTFrwJLzRPIG_kPrsHc8aFD5QfF_K0FR_Ql25h3SKh7KvOX1_wBuw/?imgmax=800&quot; width=&quot;544&quot; height=&quot;150&quot; /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;b&gt;Scripts in both the body and the head section:&lt;/b&gt; You can place an unlimited number of scripts in your document, so you can have scripts in both the body and the head section. &lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiK4GJsJ6eFS6FfOK5zEyGtr8WxW8LY7Sl8BGI03TdNZUKcGey4Z07hOp8WYGjQSjOumqqFboI31pJ5DgMEHo383m3E9LZQ7ktTLGeS7TlU-zT_U3Cw5JEW3IwY6xh_9ektJqfD7xjB49s/s1600-h/clip_image001%5B8%5D%5B4%5D.png&quot;&gt;&lt;img style=&quot;background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px&quot; title=&quot;Where to Put the JavaScript&quot; border=&quot;0&quot; alt=&quot;Where to Put the JavaScript&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjP_z7at_IHU1DBHpR8x81f6JGeGqwH_vm_hyYx0AfF1qbpmUhpBeirGCvPAq2ZRhdmvwDSwrnemI9Q0l5qNPhbqZEYqKVLcsRZGmvE4CnKB5dM_-v0l6h7JsXZv7pvsduJle1A-mjZCrA/?imgmax=800&quot; width=&quot;545&quot; height=&quot;200&quot; /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;h4&gt;Using an External JavaScript&lt;/h4&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;   Technorati Tags: &lt;a href=&quot;http://technorati.com/tags/JavaScript&quot; rel=&quot;tag&quot;&gt;JavaScript&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Where&quot; rel=&quot;tag&quot;&gt;Where&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/JavaScripts&quot; rel=&quot;tag&quot;&gt;JavaScripts&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Sometimes&quot; rel=&quot;tag&quot;&gt;Sometimes&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/script&quot; rel=&quot;tag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/user&quot; rel=&quot;tag&quot;&gt;user&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/event&quot; rel=&quot;tag&quot;&gt;event&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Scripts&quot; rel=&quot;tag&quot;&gt;Scripts&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/External&quot; rel=&quot;tag&quot;&gt;External&lt;/a&gt;  &lt;br /&gt;   Windows Live Tags: &lt;a href=&quot;http://windows.live.com/connect/tag/JavaScript&quot; rel=&quot;clubhouseTag&quot;&gt;JavaScript&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Where&quot; rel=&quot;clubhouseTag&quot;&gt;Where&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/JavaScripts&quot; rel=&quot;clubhouseTag&quot;&gt;JavaScripts&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Sometimes&quot; rel=&quot;clubhouseTag&quot;&gt;Sometimes&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/script&quot; rel=&quot;clubhouseTag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/user&quot; rel=&quot;clubhouseTag&quot;&gt;user&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/event&quot; rel=&quot;clubhouseTag&quot;&gt;event&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Scripts&quot; rel=&quot;clubhouseTag&quot;&gt;Scripts&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/External&quot; rel=&quot;clubhouseTag&quot;&gt;External&lt;/a&gt;  &lt;br /&gt;     WordPress Tags: &lt;a href=&quot;http://wordpress.com/tag/JavaScript&quot; rel=&quot;Tag&quot;&gt;JavaScript&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Where&quot; rel=&quot;Tag&quot;&gt;Where&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/JavaScripts&quot; rel=&quot;Tag&quot;&gt;JavaScripts&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Sometimes&quot; rel=&quot;Tag&quot;&gt;Sometimes&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/script&quot; rel=&quot;Tag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/user&quot; rel=&quot;Tag&quot;&gt;user&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/event&quot; rel=&quot;Tag&quot;&gt;event&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Scripts&quot; rel=&quot;Tag&quot;&gt;Scripts&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/External&quot; rel=&quot;Tag&quot;&gt;External&lt;/a&gt;  &lt;br /&gt;     Blogger Labels: &lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/JavaScript&quot; rel=&quot;Tag&quot;&gt;JavaScript&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Where&quot; rel=&quot;Tag&quot;&gt;Where&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/JavaScripts&quot; rel=&quot;Tag&quot;&gt;JavaScripts&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Sometimes&quot; rel=&quot;Tag&quot;&gt;Sometimes&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/script&quot; rel=&quot;Tag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/user&quot; rel=&quot;Tag&quot;&gt;user&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/event&quot; rel=&quot;Tag&quot;&gt;event&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Scripts&quot; rel=&quot;Tag&quot;&gt;Scripts&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/External&quot; rel=&quot;Tag&quot;&gt;External&lt;/a&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/7833953367585720969/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/laying-javascript.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/7833953367585720969'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/7833953367585720969'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/laying-javascript.html' title='laying JavaScript'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlQZvSQm-p5GWDgJ8o8a1oXpZDhzTUHVqsT29Kev19SilvuLSEvH6ltLcAyYUbId6LQqwAeQhCEHv1O47I7i8I0J9PkxEQK1RUY4LE6eZiNHl-qP6-Hk6beNTA_Cv8o4okFOe9Mwrh-tk/s72-c?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-1820361288109606722</id><published>2011-04-29T07:01:00.000+07:00</published><updated>2011-04-29T07:03:38.714+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="basic"/><title type='text'>Structures Condition and Repetition section</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/04/structures-condition-and-repetition.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;http://programminghaha.blogspot.com&quot; target=&quot;_blank&quot;&gt;hey hey&lt;/a&gt;, You can implement this in php, and other programming languages​​,. The following is basic to know the loop&lt;/p&gt;  &lt;p&gt;1. Structure Condition   &lt;br /&gt;Branching control structures (decision making) that control the structure function    &lt;br /&gt;to conduct elections for the command to be executed in accordance with certain conditions.    &lt;br /&gt;There are four branching orders in PHP, that is &lt;em&gt;if, if .. else, if .. elseif, and switch.&lt;/em&gt;&lt;/p&gt; &lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-thinkingsmile&quot; alt=&quot;Thinking smile&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBPZhOm4N4w2gVdyURqbq9cjCwITE5DfTa2cCcTe135aCT2Ex_LlD0ZYweCu-A7c3KVM12BBZfnMlm9OWVbiB0NWkpemq2Kw4fyhQC4ZFb6ts_X1ewh4IccDcOHv8VSKbk7_l9njb36OY/?imgmax=800&quot; /&gt; Structure Condition &lt;em&gt;&lt;strong&gt;If &lt;/strong&gt;&lt;/em&gt;  &lt;br /&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font style=&quot;background-color: #0000ff&quot;&gt;&lt;/font&gt;&lt;font color=&quot;#9b00d3&quot;&gt;stucture condition If       &lt;br /&gt;&lt;em&gt;if (condition) {&lt;/em&gt;        &lt;br /&gt;statement-if-condition-true;        &lt;br /&gt;}&lt;/font&gt;&lt;font style=&quot;background-color: #0000ff&quot;&gt;&lt;/font&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;&lt;strong&gt;Description:         &lt;br /&gt;condition is a statement or a variable that should be checked TRUE or FALSE.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-winkingsmile&quot; alt=&quot;Winking smile&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhmzTLgd9KXGYuX0kHlikCbi7KjlQAr1rJQBMVVSunirSJexUvWuQcAmkcp6FjBJZRm7XNvZz_YwSEXA3wQJK1C72YuRYbnyvCUUTOiCh5Lwb8yKYRbflmPwG_LNRxLXUHiMmnBqfvX6fg/?imgmax=800&quot; /&gt; Structure Condition &lt;em&gt;&lt;strong&gt;If ... Else&lt;/strong&gt;&lt;/em&gt;    &lt;br /&gt;&lt;em&gt;&lt;strong&gt;If ... else&lt;/strong&gt;&lt;/em&gt; command is used to select a statement based on a    &lt;br /&gt;condition. This command will execute a particular statement if the condition is true and will    &lt;br /&gt;run another statement if the condition is false. Syntax is    &lt;br /&gt;as follows: &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color=&quot;#9b00d3&quot;&gt;&lt;em&gt;if &lt;/em&gt;(condition) {        &lt;br /&gt;statement-if-condition-true;        &lt;br /&gt;&lt;em&gt;} else {&lt;/em&gt;        &lt;br /&gt;statement-if-conditio -false;        &lt;br /&gt;&lt;em&gt;}&lt;/em&gt;&lt;/font&gt;&lt;/p&gt;    &lt;p&gt;Description:     &lt;br /&gt;condition of a statement or a variable that should be checked his TRUE or FALSE. If      &lt;br /&gt;the condition is TRUE, the statement in the if block will be executed, otherwise if      &lt;br /&gt;the condition is FALSE, the statement in the else block will be executed.&lt;/p&gt; &lt;/blockquote&gt;  &lt;a name=&#39;more&#39;&gt;&lt;/a&gt;  &lt;p&gt;&lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-berightback&quot; alt=&quot;Be right back&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg54KexnOYSgaipl3OAkbHa6rJiRhQXMERSZZNq_Lm3XtAz9g7ilsAMz7OQumLtchNWyf58CLc1OUoSHJ5uXFlgcK5dFgibhubUaXb_kZOhnF3xawWvGoMY_NMm8jbNfR-LSxKqwoW7FZw/?imgmax=800&quot; /&gt; Structure Condition &lt;em&gt;&lt;strong&gt;Switch ... Case       &lt;br /&gt;&lt;/strong&gt;&lt;/em&gt;Command switches used as an alternative of the if ... elseif command. With    &lt;br /&gt;This command branching program will be more easily prepared and studied. Syntax writing    &lt;br /&gt;command switches are as follows: &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color=&quot;#9b00d3&quot;&gt;switch (condition)       &lt;br /&gt;{        &lt;br /&gt;case constants_1:        &lt;br /&gt;statement_1;        &lt;br /&gt;break;        &lt;br /&gt;case constants_2:        &lt;br /&gt;statement_2;        &lt;br /&gt;break;&lt;/font&gt;&lt;/p&gt;    &lt;p&gt;&lt;font color=&quot;#9b00d3&quot;&gt;default:       &lt;br /&gt;statement_3;        &lt;br /&gt;}&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;blockquote&gt;   &lt;p&gt;Information     &lt;br /&gt;Command switch will select the given conditions and compare the results with      &lt;br /&gt;constants that are on the case. Benchmarking will start from konstanta_1      &lt;br /&gt;until the last constant. If the result of a condition equal to the value of certain constants, then      &lt;br /&gt;statement on these constants will run until the break statement is found. If      &lt;br /&gt;results from the same condition with no constants are given, then      &lt;br /&gt;the default statement will be executed.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;   Technorati Tags: &lt;a href=&quot;http://technorati.com/tags/Structures&quot; rel=&quot;tag&quot;&gt;Structures&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Condition&quot; rel=&quot;tag&quot;&gt;Condition&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Repetition&quot; rel=&quot;tag&quot;&gt;Repetition&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/languages&quot; rel=&quot;tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Structure&quot; rel=&quot;tag&quot;&gt;Structure&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/decision&quot; rel=&quot;tag&quot;&gt;decision&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/elections&quot; rel=&quot;tag&quot;&gt;elections&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/accordance&quot; rel=&quot;tag&quot;&gt;accordance&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/statement&quot; rel=&quot;tag&quot;&gt;statement&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Description&quot; rel=&quot;tag&quot;&gt;Description&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/TRUE&quot; rel=&quot;tag&quot;&gt;TRUE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/FALSE&quot; rel=&quot;tag&quot;&gt;FALSE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Else&quot; rel=&quot;tag&quot;&gt;Else&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Syntax&quot; rel=&quot;tag&quot;&gt;Syntax&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Switch&quot; rel=&quot;tag&quot;&gt;Switch&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Case&quot; rel=&quot;tag&quot;&gt;Case&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Command&quot; rel=&quot;tag&quot;&gt;Command&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Information&quot; rel=&quot;tag&quot;&gt;Information&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/constants&quot; rel=&quot;tag&quot;&gt;constants&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/elseif&quot; rel=&quot;tag&quot;&gt;elseif&lt;/a&gt;  &lt;br /&gt;   Windows Live Tags: &lt;a href=&quot;http://windows.live.com/connect/tag/Structures&quot; rel=&quot;clubhouseTag&quot;&gt;Structures&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Condition&quot; rel=&quot;clubhouseTag&quot;&gt;Condition&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Repetition&quot; rel=&quot;clubhouseTag&quot;&gt;Repetition&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/languages&quot; rel=&quot;clubhouseTag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Structure&quot; rel=&quot;clubhouseTag&quot;&gt;Structure&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/decision&quot; rel=&quot;clubhouseTag&quot;&gt;decision&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/elections&quot; rel=&quot;clubhouseTag&quot;&gt;elections&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/accordance&quot; rel=&quot;clubhouseTag&quot;&gt;accordance&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/statement&quot; rel=&quot;clubhouseTag&quot;&gt;statement&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Description&quot; rel=&quot;clubhouseTag&quot;&gt;Description&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/TRUE&quot; rel=&quot;clubhouseTag&quot;&gt;TRUE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/FALSE&quot; rel=&quot;clubhouseTag&quot;&gt;FALSE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Else&quot; rel=&quot;clubhouseTag&quot;&gt;Else&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Syntax&quot; rel=&quot;clubhouseTag&quot;&gt;Syntax&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Switch&quot; rel=&quot;clubhouseTag&quot;&gt;Switch&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Case&quot; rel=&quot;clubhouseTag&quot;&gt;Case&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Command&quot; rel=&quot;clubhouseTag&quot;&gt;Command&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Information&quot; rel=&quot;clubhouseTag&quot;&gt;Information&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/constants&quot; rel=&quot;clubhouseTag&quot;&gt;constants&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/elseif&quot; rel=&quot;clubhouseTag&quot;&gt;elseif&lt;/a&gt;  &lt;br /&gt;     WordPress Tags: &lt;a href=&quot;http://wordpress.com/tag/Structures&quot; rel=&quot;Tag&quot;&gt;Structures&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Condition&quot; rel=&quot;Tag&quot;&gt;Condition&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Repetition&quot; rel=&quot;Tag&quot;&gt;Repetition&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/languages&quot; rel=&quot;Tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Structure&quot; rel=&quot;Tag&quot;&gt;Structure&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/decision&quot; rel=&quot;Tag&quot;&gt;decision&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/elections&quot; rel=&quot;Tag&quot;&gt;elections&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/accordance&quot; rel=&quot;Tag&quot;&gt;accordance&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/statement&quot; rel=&quot;Tag&quot;&gt;statement&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Description&quot; rel=&quot;Tag&quot;&gt;Description&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/TRUE&quot; rel=&quot;Tag&quot;&gt;TRUE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/FALSE&quot; rel=&quot;Tag&quot;&gt;FALSE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Else&quot; rel=&quot;Tag&quot;&gt;Else&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Syntax&quot; rel=&quot;Tag&quot;&gt;Syntax&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Switch&quot; rel=&quot;Tag&quot;&gt;Switch&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Case&quot; rel=&quot;Tag&quot;&gt;Case&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Command&quot; rel=&quot;Tag&quot;&gt;Command&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Information&quot; rel=&quot;Tag&quot;&gt;Information&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/constants&quot; rel=&quot;Tag&quot;&gt;constants&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/elseif&quot; rel=&quot;Tag&quot;&gt;elseif&lt;/a&gt;  &lt;br /&gt;     Blogger Labels: &lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Structures&quot; rel=&quot;Tag&quot;&gt;Structures&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Condition&quot; rel=&quot;Tag&quot;&gt;Condition&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Repetition&quot; rel=&quot;Tag&quot;&gt;Repetition&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/languages&quot; rel=&quot;Tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Structure&quot; rel=&quot;Tag&quot;&gt;Structure&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/decision&quot; rel=&quot;Tag&quot;&gt;decision&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/elections&quot; rel=&quot;Tag&quot;&gt;elections&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/accordance&quot; rel=&quot;Tag&quot;&gt;accordance&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/statement&quot; rel=&quot;Tag&quot;&gt;statement&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Description&quot; rel=&quot;Tag&quot;&gt;Description&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/TRUE&quot; rel=&quot;Tag&quot;&gt;TRUE&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/FALSE&quot; rel=&quot;Tag&quot;&gt;FALSE&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Else&quot; rel=&quot;Tag&quot;&gt;Else&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Syntax&quot; rel=&quot;Tag&quot;&gt;Syntax&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Switch&quot; rel=&quot;Tag&quot;&gt;Switch&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Case&quot; rel=&quot;Tag&quot;&gt;Case&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Command&quot; rel=&quot;Tag&quot;&gt;Command&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Information&quot; rel=&quot;Tag&quot;&gt;Information&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/constants&quot; rel=&quot;Tag&quot;&gt;constants&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/elseif&quot; rel=&quot;Tag&quot;&gt;elseif&lt;/a&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/1820361288109606722/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/structures-condition-and-repetition.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/1820361288109606722'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/1820361288109606722'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/structures-condition-and-repetition.html' title='Structures Condition and Repetition section'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBPZhOm4N4w2gVdyURqbq9cjCwITE5DfTa2cCcTe135aCT2Ex_LlD0ZYweCu-A7c3KVM12BBZfnMlm9OWVbiB0NWkpemq2Kw4fyhQC4ZFb6ts_X1ewh4IccDcOHv8VSKbk7_l9njb36OY/s72-c?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-1196504230184106151</id><published>2011-04-21T13:20:00.000+07:00</published><updated>2011-04-21T13:20:32.674+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Register On Vs Global Register Global Off</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/04/register-on-vs-global-register-global.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;At the beginning of its development, by default the global registers in the set of On the    &lt;br /&gt;tujuang to give the user ease in learning PHP, so that&amp;#160; users can take / call variable simply by mentioning the name&amp;#160; variables, no matter whether the variable comes from GET, POST, COOKIE,&amp;#160; or SESSION. An example script follows:     &lt;br /&gt;Scripts &amp;quot;globalon.php&amp;quot;     &lt;br /&gt;&lt;/p&gt;  &lt;div class=&quot;csharpcode&quot;&gt;   &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   1:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;?&lt;/span&gt; Php &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   2:  &lt;/span&gt;echo &amp;quot;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;form&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;method&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;GET&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;action&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;globalon&lt;/span&gt;.&lt;span class=&quot;attr&quot;&gt;php&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   3:  &lt;/span&gt;Enter your name: &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;input&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;type&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;text&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&#39;nama&#39;&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   4:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;input&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;type&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;submit&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;name&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;oke&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;value&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;kirim&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; form&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &amp;quot;; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   5:  &lt;/span&gt;if ($ ok == &#39;send&#39;) { &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   6:  &lt;/span&gt;echo &amp;quot;Your name is: &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; $ name &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; b&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&amp;quot;; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   7:  &lt;/span&gt;} &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   8:  &lt;/span&gt;?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;style type=&quot;text/css&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;.csharpcode, .csharpcode pre&lt;br /&gt;{&lt;br /&gt;	font-size: small;&lt;br /&gt;	color: black;&lt;br /&gt;	font-family: consolas, &quot;Courier New&quot;, courier, monospace;&lt;br /&gt;	background-color: #ffffff;&lt;br /&gt;	/*white-space: pre;*/&lt;br /&gt;}&lt;br /&gt;.csharpcode pre { margin: 0em; }&lt;br /&gt;.csharpcode .rem { color: #008000; }&lt;br /&gt;.csharpcode .kwrd { color: #0000ff; }&lt;br /&gt;.csharpcode .str { color: #006080; }&lt;br /&gt;.csharpcode .op { color: #0000c0; }&lt;br /&gt;.csharpcode .preproc { color: #cc6633; }&lt;br /&gt;.csharpcode .asp { background-color: #ffff00; }&lt;br /&gt;.csharpcode .html { color: #800000; }&lt;br /&gt;.csharpcode .attr { color: #ff0000; }&lt;br /&gt;.csharpcode .alt &lt;br /&gt;{&lt;br /&gt;	background-color: #f4f4f4;&lt;br /&gt;	width: 100%;&lt;br /&gt;	margin: 0em;&lt;br /&gt;}&lt;br /&gt;.csharpcode .lnum { color: #606060; }&lt;/style&gt;&lt;br /&gt;&lt;br /&gt;&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;  &lt;br /&gt;However, since version 4.3.X and above, then the default value of global register = Off,&amp;#160; so if globalon.php script is run, it will not produce anything.&amp;#160; So for the script to run on register globals = Off, it is necessary&amp;#160;&amp;#160; variables to be adjusted as follows:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;csharpcode&quot;&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   1:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;?&lt;/span&gt; Php &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   2:  &lt;/span&gt;echo &amp;quot;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;form&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;method&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;GET&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;action&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;globalon&lt;/span&gt;.&lt;span class=&quot;attr&quot;&gt;php&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   3:  &lt;/span&gt;Enter your name: &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;input&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;type&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;text&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&#39;nama&#39;&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   4:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;input&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;type&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;submit&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;name&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;oke&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;value&lt;/span&gt;=&lt;span class=&quot;attr&quot;&gt;kirim&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; form&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &amp;quot;; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   5:  &lt;/span&gt;if ($ _GET [OK] == &#39;send&#39;) { &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   6:  &lt;/span&gt;echo &amp;quot;Your name is: &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; $ _GET [name] &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; b&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&amp;quot;; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   7:  &lt;/span&gt;} &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   8:  &lt;/span&gt;?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;style type=&quot;text/css&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;.csharpcode, .csharpcode pre&lt;br /&gt;{&lt;br /&gt;	font-size: small;&lt;br /&gt;	color: black;&lt;br /&gt;	font-family: consolas, &quot;Courier New&quot;, courier, monospace;&lt;br /&gt;	background-color: #ffffff;&lt;br /&gt;	/*white-space: pre;*/&lt;br /&gt;}&lt;br /&gt;.csharpcode pre { margin: 0em; }&lt;br /&gt;.csharpcode .rem { color: #008000; }&lt;br /&gt;.csharpcode .kwrd { color: #0000ff; }&lt;br /&gt;.csharpcode .str { color: #006080; }&lt;br /&gt;.csharpcode .op { color: #0000c0; }&lt;br /&gt;.csharpcode .preproc { color: #cc6633; }&lt;br /&gt;.csharpcode .asp { background-color: #ffff00; }&lt;br /&gt;.csharpcode .html { color: #800000; }&lt;br /&gt;.csharpcode .attr { color: #ff0000; }&lt;br /&gt;.csharpcode .alt &lt;br /&gt;{&lt;br /&gt;	background-color: #f4f4f4;&lt;br /&gt;	width: 100%;&lt;br /&gt;	margin: 0em;&lt;br /&gt;}&lt;br /&gt;.csharpcode .lnum { color: #606060; }&lt;/style&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt; Note the source of the variable, when using the method / POST parameters, &lt;br /&gt;  &lt;br /&gt;then calling the variables: $ _POST [&#39;nama_varibel&#39;]. &lt;br /&gt;&lt;br /&gt;  &lt;br /&gt; If the source of the variables taken from the variables that brought the Address bar, &lt;br /&gt;&lt;br /&gt;  &lt;br /&gt;for example: &lt;a href=&quot;http://localhost/modul/globalon.php?nama=Amikom&quot;&gt;http://localhost/modul/globalon.php?nama=Amikom&lt;/a&gt;, then writing &lt;br /&gt;&lt;br /&gt;  &lt;br /&gt;variables: $ _GET [&#39;nama_variabel&#39;]. &lt;br /&gt;&lt;br /&gt;  &lt;br /&gt; The syntax of variables such as $ _ENV, $ _GET, $ _POST, $ _COOKIE, $ _SESSION, &lt;br /&gt;&lt;br /&gt;  &lt;br /&gt;$ _FILES And $ _SERVER is also often called superglobal or autoglobal, &lt;br /&gt;&lt;br /&gt;  &lt;br /&gt;means that these variables can walk anywhere, no matter whether the register &lt;br /&gt;&lt;br /&gt;  &lt;br /&gt;global On or Off.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;br /&gt;Technorati Tags: &lt;a href=&quot;http://technorati.com/tags/Register&quot; rel=&quot;tag&quot;&gt;Register&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Global&quot; rel=&quot;tag&quot;&gt;Global&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/development&quot; rel=&quot;tag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/user&quot; rel=&quot;tag&quot;&gt;user&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/users&quot; rel=&quot;tag&quot;&gt;users&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/POST&quot; rel=&quot;tag&quot;&gt;POST&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/COOKIE&quot; rel=&quot;tag&quot;&gt;COOKIE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/SESSION&quot; rel=&quot;tag&quot;&gt;SESSION&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/example&quot; rel=&quot;tag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/script&quot; rel=&quot;tag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Scripts&quot; rel=&quot;tag&quot;&gt;Scripts&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/method&quot; rel=&quot;tag&quot;&gt;method&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/action&quot; rel=&quot;tag&quot;&gt;action&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Enter&quot; rel=&quot;tag&quot;&gt;Enter&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/text&quot; rel=&quot;tag&quot;&gt;text&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/size&quot; rel=&quot;tag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Consolas&quot; rel=&quot;tag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Courier&quot; rel=&quot;tag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Monospace&quot; rel=&quot;tag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/margin&quot; rel=&quot;tag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/width&quot; rel=&quot;tag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/version&quot; rel=&quot;tag&quot;&gt;version&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/_GET&quot; rel=&quot;tag&quot;&gt;_GET&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Note&quot; rel=&quot;tag&quot;&gt;Note&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/parameters&quot; rel=&quot;tag&quot;&gt;parameters&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/_POST&quot; rel=&quot;tag&quot;&gt;_POST&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Amikom&quot; rel=&quot;tag&quot;&gt;Amikom&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/syntax&quot; rel=&quot;tag&quot;&gt;syntax&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/_ENV&quot; rel=&quot;tag&quot;&gt;_ENV&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/_COOKIE&quot; rel=&quot;tag&quot;&gt;_COOKIE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/_SESSION&quot; rel=&quot;tag&quot;&gt;_SESSION&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/_FILES&quot; rel=&quot;tag&quot;&gt;_FILES&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/_SERVER&quot; rel=&quot;tag&quot;&gt;_SERVER&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/variables&quot; rel=&quot;tag&quot;&gt;variables&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/whether&quot; rel=&quot;tag&quot;&gt;whether&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/globalon&quot; rel=&quot;tag&quot;&gt;globalon&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/nama&quot; rel=&quot;tag&quot;&gt;nama&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/kirim&quot; rel=&quot;tag&quot;&gt;kirim&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/csharpcode&quot; rel=&quot;tag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/ffffff&quot; rel=&quot;tag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/kwrd&quot; rel=&quot;tag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/preproc&quot; rel=&quot;tag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/html&quot; rel=&quot;tag&quot;&gt;html&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/attr&quot; rel=&quot;tag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/lnum&quot; rel=&quot;tag&quot;&gt;lnum&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Windows Live Tags: &lt;a href=&quot;http://windows.live.com/connect/tag/Register&quot; rel=&quot;clubhouseTag&quot;&gt;Register&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Global&quot; rel=&quot;clubhouseTag&quot;&gt;Global&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/development&quot; rel=&quot;clubhouseTag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/user&quot; rel=&quot;clubhouseTag&quot;&gt;user&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/users&quot; rel=&quot;clubhouseTag&quot;&gt;users&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/POST&quot; rel=&quot;clubhouseTag&quot;&gt;POST&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/COOKIE&quot; rel=&quot;clubhouseTag&quot;&gt;COOKIE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/SESSION&quot; rel=&quot;clubhouseTag&quot;&gt;SESSION&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/example&quot; rel=&quot;clubhouseTag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/script&quot; rel=&quot;clubhouseTag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Scripts&quot; rel=&quot;clubhouseTag&quot;&gt;Scripts&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/method&quot; rel=&quot;clubhouseTag&quot;&gt;method&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/action&quot; rel=&quot;clubhouseTag&quot;&gt;action&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Enter&quot; rel=&quot;clubhouseTag&quot;&gt;Enter&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/text&quot; rel=&quot;clubhouseTag&quot;&gt;text&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/size&quot; rel=&quot;clubhouseTag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Consolas&quot; rel=&quot;clubhouseTag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Courier&quot; rel=&quot;clubhouseTag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Monospace&quot; rel=&quot;clubhouseTag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/margin&quot; rel=&quot;clubhouseTag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/width&quot; rel=&quot;clubhouseTag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/version&quot; rel=&quot;clubhouseTag&quot;&gt;version&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/_GET&quot; rel=&quot;clubhouseTag&quot;&gt;_GET&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Note&quot; rel=&quot;clubhouseTag&quot;&gt;Note&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/parameters&quot; rel=&quot;clubhouseTag&quot;&gt;parameters&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/_POST&quot; rel=&quot;clubhouseTag&quot;&gt;_POST&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Amikom&quot; rel=&quot;clubhouseTag&quot;&gt;Amikom&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/syntax&quot; rel=&quot;clubhouseTag&quot;&gt;syntax&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/_ENV&quot; rel=&quot;clubhouseTag&quot;&gt;_ENV&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/_COOKIE&quot; rel=&quot;clubhouseTag&quot;&gt;_COOKIE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/_SESSION&quot; rel=&quot;clubhouseTag&quot;&gt;_SESSION&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/_FILES&quot; rel=&quot;clubhouseTag&quot;&gt;_FILES&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/_SERVER&quot; rel=&quot;clubhouseTag&quot;&gt;_SERVER&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/variables&quot; rel=&quot;clubhouseTag&quot;&gt;variables&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/whether&quot; rel=&quot;clubhouseTag&quot;&gt;whether&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/globalon&quot; rel=&quot;clubhouseTag&quot;&gt;globalon&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/nama&quot; rel=&quot;clubhouseTag&quot;&gt;nama&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/kirim&quot; rel=&quot;clubhouseTag&quot;&gt;kirim&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/csharpcode&quot; rel=&quot;clubhouseTag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/ffffff&quot; rel=&quot;clubhouseTag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/kwrd&quot; rel=&quot;clubhouseTag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/preproc&quot; rel=&quot;clubhouseTag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/html&quot; rel=&quot;clubhouseTag&quot;&gt;html&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/attr&quot; rel=&quot;clubhouseTag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/lnum&quot; rel=&quot;clubhouseTag&quot;&gt;lnum&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;WordPress Tags: &lt;a href=&quot;http://wordpress.com/tag/Register&quot; rel=&quot;Tag&quot;&gt;Register&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Global&quot; rel=&quot;Tag&quot;&gt;Global&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/development&quot; rel=&quot;Tag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/user&quot; rel=&quot;Tag&quot;&gt;user&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/users&quot; rel=&quot;Tag&quot;&gt;users&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/POST&quot; rel=&quot;Tag&quot;&gt;POST&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/COOKIE&quot; rel=&quot;Tag&quot;&gt;COOKIE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/SESSION&quot; rel=&quot;Tag&quot;&gt;SESSION&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/example&quot; rel=&quot;Tag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/script&quot; rel=&quot;Tag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Scripts&quot; rel=&quot;Tag&quot;&gt;Scripts&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/method&quot; rel=&quot;Tag&quot;&gt;method&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/action&quot; rel=&quot;Tag&quot;&gt;action&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Enter&quot; rel=&quot;Tag&quot;&gt;Enter&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/text&quot; rel=&quot;Tag&quot;&gt;text&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/size&quot; rel=&quot;Tag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Consolas&quot; rel=&quot;Tag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Courier&quot; rel=&quot;Tag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Monospace&quot; rel=&quot;Tag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/margin&quot; rel=&quot;Tag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/width&quot; rel=&quot;Tag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/version&quot; rel=&quot;Tag&quot;&gt;version&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/_GET&quot; rel=&quot;Tag&quot;&gt;_GET&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Note&quot; rel=&quot;Tag&quot;&gt;Note&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/parameters&quot; rel=&quot;Tag&quot;&gt;parameters&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/_POST&quot; rel=&quot;Tag&quot;&gt;_POST&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Amikom&quot; rel=&quot;Tag&quot;&gt;Amikom&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/syntax&quot; rel=&quot;Tag&quot;&gt;syntax&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/_ENV&quot; rel=&quot;Tag&quot;&gt;_ENV&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/_COOKIE&quot; rel=&quot;Tag&quot;&gt;_COOKIE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/_SESSION&quot; rel=&quot;Tag&quot;&gt;_SESSION&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/_FILES&quot; rel=&quot;Tag&quot;&gt;_FILES&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/_SERVER&quot; rel=&quot;Tag&quot;&gt;_SERVER&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/variables&quot; rel=&quot;Tag&quot;&gt;variables&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/whether&quot; rel=&quot;Tag&quot;&gt;whether&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/globalon&quot; rel=&quot;Tag&quot;&gt;globalon&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/nama&quot; rel=&quot;Tag&quot;&gt;nama&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/kirim&quot; rel=&quot;Tag&quot;&gt;kirim&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/csharpcode&quot; rel=&quot;Tag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/ffffff&quot; rel=&quot;Tag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/kwrd&quot; rel=&quot;Tag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/preproc&quot; rel=&quot;Tag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/html&quot; rel=&quot;Tag&quot;&gt;html&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/attr&quot; rel=&quot;Tag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/lnum&quot; rel=&quot;Tag&quot;&gt;lnum&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Blogger Labels: &lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Register&quot; rel=&quot;Tag&quot;&gt;Register&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Global&quot; rel=&quot;Tag&quot;&gt;Global&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/development&quot; rel=&quot;Tag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/user&quot; rel=&quot;Tag&quot;&gt;user&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/users&quot; rel=&quot;Tag&quot;&gt;users&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/POST&quot; rel=&quot;Tag&quot;&gt;POST&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/COOKIE&quot; rel=&quot;Tag&quot;&gt;COOKIE&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/SESSION&quot; rel=&quot;Tag&quot;&gt;SESSION&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/example&quot; rel=&quot;Tag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/script&quot; rel=&quot;Tag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Scripts&quot; rel=&quot;Tag&quot;&gt;Scripts&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/method&quot; rel=&quot;Tag&quot;&gt;method&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/action&quot; rel=&quot;Tag&quot;&gt;action&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Enter&quot; rel=&quot;Tag&quot;&gt;Enter&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/text&quot; rel=&quot;Tag&quot;&gt;text&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/size&quot; rel=&quot;Tag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Consolas&quot; rel=&quot;Tag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Courier&quot; rel=&quot;Tag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Monospace&quot; rel=&quot;Tag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/margin&quot; rel=&quot;Tag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/width&quot; rel=&quot;Tag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/version&quot; rel=&quot;Tag&quot;&gt;version&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/_GET&quot; rel=&quot;Tag&quot;&gt;_GET&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Note&quot; rel=&quot;Tag&quot;&gt;Note&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/parameters&quot; rel=&quot;Tag&quot;&gt;parameters&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/_POST&quot; rel=&quot;Tag&quot;&gt;_POST&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/Amikom&quot; rel=&quot;Tag&quot;&gt;Amikom&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/syntax&quot; rel=&quot;Tag&quot;&gt;syntax&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/_ENV&quot; rel=&quot;Tag&quot;&gt;_ENV&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/_COOKIE&quot; rel=&quot;Tag&quot;&gt;_COOKIE&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/_SESSION&quot; rel=&quot;Tag&quot;&gt;_SESSION&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/_FILES&quot; rel=&quot;Tag&quot;&gt;_FILES&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/_SERVER&quot; rel=&quot;Tag&quot;&gt;_SERVER&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/variables&quot; rel=&quot;Tag&quot;&gt;variables&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/whether&quot; rel=&quot;Tag&quot;&gt;whether&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/globalon&quot; rel=&quot;Tag&quot;&gt;globalon&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/nama&quot; rel=&quot;Tag&quot;&gt;nama&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/kirim&quot; rel=&quot;Tag&quot;&gt;kirim&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/csharpcode&quot; rel=&quot;Tag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/ffffff&quot; rel=&quot;Tag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/kwrd&quot; rel=&quot;Tag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/preproc&quot; rel=&quot;Tag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/html&quot; rel=&quot;Tag&quot;&gt;html&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/attr&quot; rel=&quot;Tag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://http://programminghaha.blogspot.com.blogspot.com/search/label/lnum&quot; rel=&quot;Tag&quot;&gt;lnum&lt;/a&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/1196504230184106151/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/register-on-vs-global-register-global.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/1196504230184106151'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/1196504230184106151'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/register-on-vs-global-register-global.html' title='Register On Vs Global Register Global Off'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-8226837628009992206</id><published>2011-04-21T00:04:00.000+07:00</published><updated>2011-04-21T00:09:59.096+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="netbeans"/><title type='text'>Flow Learning Java</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/04/flow-learning-java.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p&gt;   &lt;br /&gt;Java&amp;#160; &lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-berightback&quot; alt=&quot;Be right back&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhxo4nsNvXesnkkoGi9XzId9iExFODzx_flfL3zdps16nb0AjpyfzzFigqNaBdiD1pdvXQo4hR1UoWaijd3npKToNR0ZFxhNu1VpWzB4e9fajkIMkXeI0l2t0dHODFbxKlFWezrUz-g5F8/?imgmax=800&quot; /&gt; is an interesting technology but spacious. He can be used for develop solutions for mobile devices that run on enterprise servers. The extent of Java often confuses beginner in learning Java. Not infrequently caught up in the direction that is not maximum, for example control of open software source, such as Struts, Turbine, or Hybernate rather than understand Java itself.    &lt;br /&gt;Or stuck to treat the JSP as a scripting language, like culture in PHP. Where do you begin to walk, where you must step on the way your odyssey as a Java developer, preferably tailored to your objectives. Do you want to develop applications for mobile phones, or to run on the enterprise server? This requires a different Java technology for be explored.    &lt;br /&gt;Java Platform    &lt;br /&gt;Java as a platform for software development, broadly divided into 3    &lt;br /&gt;referrals:    &lt;br /&gt;J2SE     &lt;br /&gt;J2EE    &lt;br /&gt;J2ME    &lt;br /&gt;J2SE&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;a name=&#39;more&#39;&gt;&lt;/a&gt;  &lt;p&gt;   &lt;br /&gt;Java 2 Standard Edition includes the core of the Java programming language, contains librarylibrary    &lt;br /&gt;core needs such as IO, networking and JDBC.    &lt;br /&gt;J2EE    &lt;br /&gt;Java 2 Enterprise Edition is a Java development for enterprise solutions, ranging from    &lt;br /&gt;Web-based application with Servlet and JSP, distributed applications with EJB,    &lt;br /&gt;enterprise application integration such as Web Service.    &lt;br /&gt;J2ME    &lt;br /&gt;Java 2 Micro Edition is a Java development for mobile devices, like mobile phone    &lt;br /&gt;, Pocket PCs and PDAs. The development direction of mobile devices requires Java to    &lt;br /&gt;adapt to the machine that is limited in memory and processor.    &lt;br /&gt;Flow Learning Java    &lt;br /&gt;Chronology learn Java:    &lt;br /&gt;# Determine an objective, such as&#39; I want to be able to make an application for    &lt;br /&gt;mobile &#39;, or&#39; I wish I could make a portal with Java &#39;, or&#39; I wish I could    &lt;br /&gt;create desktop applications with Java GUI &#39;.    &lt;br /&gt;# From these objectives, you can set the agenda to learn Java so that more    &lt;br /&gt;directed and focused.    &lt;br /&gt;Java Programming Language    &lt;br /&gt;As a fundamental knowledge of Java you need to understand:    &lt;br /&gt;# the concept of byte-code and Java Virtual Machine    &lt;br /&gt;# syntax in the Java programming language as data types, flow control, handling    &lt;br /&gt;exception    &lt;br /&gt;#OOP in Java    &lt;br /&gt;Basic Java    &lt;br /&gt;To master the basic Java, among the libraries that need to be well understood are:    &lt;br /&gt;# IO, mainly deals with how to access the file with Java, and the concept    &lt;br /&gt;byte streams and character streams is needed to understand how    &lt;br /&gt;Servlet or JSP work.    &lt;br /&gt;3JDBC, deals with how to access the database with Java    &lt;br /&gt;Basic Java? Enrichment    &lt;br /&gt;The need to master additional material is dependent on your objective in    &lt;br /&gt;learn Java:    &lt;br /&gt;# Networking, needed for example to develop a client server application, not    &lt;br /&gt;Web-based, where you need to design their own communication protocol    &lt;br /&gt;# AWT and Swing, are needed if you want to develop desktop applications    &lt;br /&gt;with the Java GUI.    &lt;br /&gt;# Applet, is required if you need a GUI application that runs on top    &lt;br /&gt;browser. These materials may not need to go into if you want to develop Web applications.    &lt;br /&gt;Web Applications To be able to develop Web applications, you need to learn:    &lt;br /&gt;# Servlet, is a basic technology in the development of Web applications with Java.    &lt;br /&gt;#JSP, a servlet development, best used for the presentation layer.    &lt;br /&gt;Web Applications - Enrichment    &lt;br /&gt;This technology will be useful to improve the quality of Web-based software    &lt;br /&gt;You develop:    &lt;br /&gt;# Model View Controller    &lt;br /&gt;Enterprise Applications --- Basic    &lt;br /&gt;You will be much easier, although not mandatory, to understand the Java technology enterprise    &lt;br /&gt;by understanding:    &lt;br /&gt;# RMI or Remote Method Invocation, is the basis for distributed applications in    &lt;br /&gt;Java    &lt;br /&gt;# JNDI or Java Naming and Directory Interface    &lt;br /&gt;# Or the Java Transaction API JTA    &lt;br /&gt;Enterprise Applications --- Main    &lt;br /&gt;The main technologies in enterprise applications with Java are:    &lt;br /&gt;# EJB or Enterprise Java Bean is a key technology of the Java enterprise.    &lt;br /&gt;Advanced Enterprise Applications ---    &lt;br /&gt;These are technologies that are still in progress:    &lt;br /&gt;# XML or eXtended Markup Language, used them in Web technology    &lt;br /&gt;Service    &lt;br /&gt;# Web Service, is an architecture in which two applications communicate with each other    &lt;br /&gt;using a communication protocol called SOAP. Two applications that communicate    &lt;br /&gt;with Web services can be developed with two programming languages    &lt;br /&gt;different, and running on two different platforms.    &lt;br /&gt;# P2P or Peer-To-Peer, in Java was developed as Project Juxtapose (JXTA)    &lt;br /&gt;Mobile Applications    &lt;br /&gt;To be able to develop mobile applications, technologies that need to be controlled:    &lt;br /&gt;# MIDP or the Mobile Internet Device Profile    &lt;br /&gt;Mastering Open Source    &lt;br /&gt;Mastery of open source can provide its own power for Java developers. In    &lt;br /&gt;among them:    &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; # Library. As a library that facilitates software development, such as Hybernate, Velocity, Struts    &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160; # Deployment. Not infrequently open source is also required for deployment environment, such as Tomcat, JBoss    &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160; # Process. Or supporting the software development process such as Scarab, Ant&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;   Technorati Tags: &lt;a href=&quot;http://technorati.com/tags/Java&quot; rel=&quot;tag&quot;&gt;Java&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/technology&quot; rel=&quot;tag&quot;&gt;technology&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/solutions&quot; rel=&quot;tag&quot;&gt;solutions&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/enterprise&quot; rel=&quot;tag&quot;&gt;enterprise&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/servers&quot; rel=&quot;tag&quot;&gt;servers&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/extent&quot; rel=&quot;tag&quot;&gt;extent&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/beginner&quot; rel=&quot;tag&quot;&gt;beginner&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/direction&quot; rel=&quot;tag&quot;&gt;direction&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/example&quot; rel=&quot;tag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Struts&quot; rel=&quot;tag&quot;&gt;Struts&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Turbine&quot; rel=&quot;tag&quot;&gt;Turbine&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Hybernate&quot; rel=&quot;tag&quot;&gt;Hybernate&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Where&quot; rel=&quot;tag&quot;&gt;Where&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/odyssey&quot; rel=&quot;tag&quot;&gt;odyssey&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/developer&quot; rel=&quot;tag&quot;&gt;developer&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/server&quot; rel=&quot;tag&quot;&gt;server&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Platform&quot; rel=&quot;tag&quot;&gt;Platform&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/development&quot; rel=&quot;tag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/referrals&quot; rel=&quot;tag&quot;&gt;referrals&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Standard&quot; rel=&quot;tag&quot;&gt;Standard&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Edition&quot; rel=&quot;tag&quot;&gt;Edition&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/JDBC&quot; rel=&quot;tag&quot;&gt;JDBC&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Servlet&quot; rel=&quot;tag&quot;&gt;Servlet&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/integration&quot; rel=&quot;tag&quot;&gt;integration&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Service&quot; rel=&quot;tag&quot;&gt;Service&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Micro&quot; rel=&quot;tag&quot;&gt;Micro&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Pocket&quot; rel=&quot;tag&quot;&gt;Pocket&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/PDAs&quot; rel=&quot;tag&quot;&gt;PDAs&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/machine&quot; rel=&quot;tag&quot;&gt;machine&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/memory&quot; rel=&quot;tag&quot;&gt;memory&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/processor&quot; rel=&quot;tag&quot;&gt;processor&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Chronology&quot; rel=&quot;tag&quot;&gt;Chronology&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Determine&quot; rel=&quot;tag&quot;&gt;Determine&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/portal&quot; rel=&quot;tag&quot;&gt;portal&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/From&quot; rel=&quot;tag&quot;&gt;From&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/agenda&quot; rel=&quot;tag&quot;&gt;agenda&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Language&quot; rel=&quot;tag&quot;&gt;Language&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/knowledge&quot; rel=&quot;tag&quot;&gt;knowledge&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/concept&quot; rel=&quot;tag&quot;&gt;concept&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Virtual&quot; rel=&quot;tag&quot;&gt;Virtual&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/syntax&quot; rel=&quot;tag&quot;&gt;syntax&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/data&quot; rel=&quot;tag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/exception&quot; rel=&quot;tag&quot;&gt;exception&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Basic&quot; rel=&quot;tag&quot;&gt;Basic&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/libraries&quot; rel=&quot;tag&quot;&gt;libraries&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/database&quot; rel=&quot;tag&quot;&gt;database&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Enrichment&quot; rel=&quot;tag&quot;&gt;Enrichment&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/client&quot; rel=&quot;tag&quot;&gt;client&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/communication&quot; rel=&quot;tag&quot;&gt;communication&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/protocol&quot; rel=&quot;tag&quot;&gt;protocol&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Applet&quot; rel=&quot;tag&quot;&gt;Applet&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Applications&quot; rel=&quot;tag&quot;&gt;Applications&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/presentation&quot; rel=&quot;tag&quot;&gt;presentation&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/layer&quot; rel=&quot;tag&quot;&gt;layer&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Model&quot; rel=&quot;tag&quot;&gt;Model&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/View&quot; rel=&quot;tag&quot;&gt;View&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Controller&quot; rel=&quot;tag&quot;&gt;Controller&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Remote&quot; rel=&quot;tag&quot;&gt;Remote&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Method&quot; rel=&quot;tag&quot;&gt;Method&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Invocation&quot; rel=&quot;tag&quot;&gt;Invocation&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/basis&quot; rel=&quot;tag&quot;&gt;basis&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/JNDI&quot; rel=&quot;tag&quot;&gt;JNDI&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Directory&quot; rel=&quot;tag&quot;&gt;Directory&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Interface&quot; rel=&quot;tag&quot;&gt;Interface&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Transaction&quot; rel=&quot;tag&quot;&gt;Transaction&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Main&quot; rel=&quot;tag&quot;&gt;Main&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/technologies&quot; rel=&quot;tag&quot;&gt;technologies&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Bean&quot; rel=&quot;tag&quot;&gt;Bean&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Markup&quot; rel=&quot;tag&quot;&gt;Markup&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/architecture&quot; rel=&quot;tag&quot;&gt;architecture&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/SOAP&quot; rel=&quot;tag&quot;&gt;SOAP&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/languages&quot; rel=&quot;tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/platforms&quot; rel=&quot;tag&quot;&gt;platforms&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Peer&quot; rel=&quot;tag&quot;&gt;Peer&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Project&quot; rel=&quot;tag&quot;&gt;Project&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Juxtapose&quot; rel=&quot;tag&quot;&gt;Juxtapose&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/JXTA&quot; rel=&quot;tag&quot;&gt;JXTA&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Mobile&quot; rel=&quot;tag&quot;&gt;Mobile&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/MIDP&quot; rel=&quot;tag&quot;&gt;MIDP&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Internet&quot; rel=&quot;tag&quot;&gt;Internet&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Device&quot; rel=&quot;tag&quot;&gt;Device&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Profile&quot; rel=&quot;tag&quot;&gt;Profile&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Open&quot; rel=&quot;tag&quot;&gt;Open&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Source&quot; rel=&quot;tag&quot;&gt;Source&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Mastery&quot; rel=&quot;tag&quot;&gt;Mastery&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/developers&quot; rel=&quot;tag&quot;&gt;developers&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Library&quot; rel=&quot;tag&quot;&gt;Library&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Deployment&quot; rel=&quot;tag&quot;&gt;Deployment&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/environment&quot; rel=&quot;tag&quot;&gt;environment&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Tomcat&quot; rel=&quot;tag&quot;&gt;Tomcat&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/JBoss&quot; rel=&quot;tag&quot;&gt;JBoss&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Scarab&quot; rel=&quot;tag&quot;&gt;Scarab&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/software&quot; rel=&quot;tag&quot;&gt;software&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/desktop&quot; rel=&quot;tag&quot;&gt;desktop&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/byte&quot; rel=&quot;tag&quot;&gt;byte&lt;/a&gt;  &lt;br /&gt;   Windows Live Tags: &lt;a href=&quot;http://windows.live.com/connect/tag/Java&quot; rel=&quot;clubhouseTag&quot;&gt;Java&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/technology&quot; rel=&quot;clubhouseTag&quot;&gt;technology&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/solutions&quot; rel=&quot;clubhouseTag&quot;&gt;solutions&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/enterprise&quot; rel=&quot;clubhouseTag&quot;&gt;enterprise&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/servers&quot; rel=&quot;clubhouseTag&quot;&gt;servers&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/extent&quot; rel=&quot;clubhouseTag&quot;&gt;extent&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/beginner&quot; rel=&quot;clubhouseTag&quot;&gt;beginner&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/direction&quot; rel=&quot;clubhouseTag&quot;&gt;direction&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/example&quot; rel=&quot;clubhouseTag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Struts&quot; rel=&quot;clubhouseTag&quot;&gt;Struts&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Turbine&quot; rel=&quot;clubhouseTag&quot;&gt;Turbine&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Hybernate&quot; rel=&quot;clubhouseTag&quot;&gt;Hybernate&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Where&quot; rel=&quot;clubhouseTag&quot;&gt;Where&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/odyssey&quot; rel=&quot;clubhouseTag&quot;&gt;odyssey&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/developer&quot; rel=&quot;clubhouseTag&quot;&gt;developer&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/server&quot; rel=&quot;clubhouseTag&quot;&gt;server&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Platform&quot; rel=&quot;clubhouseTag&quot;&gt;Platform&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/development&quot; rel=&quot;clubhouseTag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/referrals&quot; rel=&quot;clubhouseTag&quot;&gt;referrals&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Standard&quot; rel=&quot;clubhouseTag&quot;&gt;Standard&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Edition&quot; rel=&quot;clubhouseTag&quot;&gt;Edition&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/JDBC&quot; rel=&quot;clubhouseTag&quot;&gt;JDBC&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Servlet&quot; rel=&quot;clubhouseTag&quot;&gt;Servlet&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/integration&quot; rel=&quot;clubhouseTag&quot;&gt;integration&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Service&quot; rel=&quot;clubhouseTag&quot;&gt;Service&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Micro&quot; rel=&quot;clubhouseTag&quot;&gt;Micro&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Pocket&quot; rel=&quot;clubhouseTag&quot;&gt;Pocket&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/PDAs&quot; rel=&quot;clubhouseTag&quot;&gt;PDAs&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/machine&quot; rel=&quot;clubhouseTag&quot;&gt;machine&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/memory&quot; rel=&quot;clubhouseTag&quot;&gt;memory&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/processor&quot; rel=&quot;clubhouseTag&quot;&gt;processor&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Chronology&quot; rel=&quot;clubhouseTag&quot;&gt;Chronology&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Determine&quot; rel=&quot;clubhouseTag&quot;&gt;Determine&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/portal&quot; rel=&quot;clubhouseTag&quot;&gt;portal&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/From&quot; rel=&quot;clubhouseTag&quot;&gt;From&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/agenda&quot; rel=&quot;clubhouseTag&quot;&gt;agenda&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Language&quot; rel=&quot;clubhouseTag&quot;&gt;Language&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/knowledge&quot; rel=&quot;clubhouseTag&quot;&gt;knowledge&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/concept&quot; rel=&quot;clubhouseTag&quot;&gt;concept&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Virtual&quot; rel=&quot;clubhouseTag&quot;&gt;Virtual&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/syntax&quot; rel=&quot;clubhouseTag&quot;&gt;syntax&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/data&quot; rel=&quot;clubhouseTag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/exception&quot; rel=&quot;clubhouseTag&quot;&gt;exception&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Basic&quot; rel=&quot;clubhouseTag&quot;&gt;Basic&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/libraries&quot; rel=&quot;clubhouseTag&quot;&gt;libraries&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/database&quot; rel=&quot;clubhouseTag&quot;&gt;database&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Enrichment&quot; rel=&quot;clubhouseTag&quot;&gt;Enrichment&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/client&quot; rel=&quot;clubhouseTag&quot;&gt;client&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/communication&quot; rel=&quot;clubhouseTag&quot;&gt;communication&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/protocol&quot; rel=&quot;clubhouseTag&quot;&gt;protocol&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Applet&quot; rel=&quot;clubhouseTag&quot;&gt;Applet&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Applications&quot; rel=&quot;clubhouseTag&quot;&gt;Applications&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/presentation&quot; rel=&quot;clubhouseTag&quot;&gt;presentation&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/layer&quot; rel=&quot;clubhouseTag&quot;&gt;layer&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Model&quot; rel=&quot;clubhouseTag&quot;&gt;Model&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/View&quot; rel=&quot;clubhouseTag&quot;&gt;View&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Controller&quot; rel=&quot;clubhouseTag&quot;&gt;Controller&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Remote&quot; rel=&quot;clubhouseTag&quot;&gt;Remote&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Method&quot; rel=&quot;clubhouseTag&quot;&gt;Method&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Invocation&quot; rel=&quot;clubhouseTag&quot;&gt;Invocation&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/basis&quot; rel=&quot;clubhouseTag&quot;&gt;basis&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/JNDI&quot; rel=&quot;clubhouseTag&quot;&gt;JNDI&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Directory&quot; rel=&quot;clubhouseTag&quot;&gt;Directory&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Interface&quot; rel=&quot;clubhouseTag&quot;&gt;Interface&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Transaction&quot; rel=&quot;clubhouseTag&quot;&gt;Transaction&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Main&quot; rel=&quot;clubhouseTag&quot;&gt;Main&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/technologies&quot; rel=&quot;clubhouseTag&quot;&gt;technologies&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Bean&quot; rel=&quot;clubhouseTag&quot;&gt;Bean&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Markup&quot; rel=&quot;clubhouseTag&quot;&gt;Markup&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/architecture&quot; rel=&quot;clubhouseTag&quot;&gt;architecture&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/SOAP&quot; rel=&quot;clubhouseTag&quot;&gt;SOAP&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/languages&quot; rel=&quot;clubhouseTag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/platforms&quot; rel=&quot;clubhouseTag&quot;&gt;platforms&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Peer&quot; rel=&quot;clubhouseTag&quot;&gt;Peer&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Project&quot; rel=&quot;clubhouseTag&quot;&gt;Project&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Juxtapose&quot; rel=&quot;clubhouseTag&quot;&gt;Juxtapose&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/JXTA&quot; rel=&quot;clubhouseTag&quot;&gt;JXTA&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Mobile&quot; rel=&quot;clubhouseTag&quot;&gt;Mobile&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/MIDP&quot; rel=&quot;clubhouseTag&quot;&gt;MIDP&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Internet&quot; rel=&quot;clubhouseTag&quot;&gt;Internet&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Device&quot; rel=&quot;clubhouseTag&quot;&gt;Device&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Profile&quot; rel=&quot;clubhouseTag&quot;&gt;Profile&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Open&quot; rel=&quot;clubhouseTag&quot;&gt;Open&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Source&quot; rel=&quot;clubhouseTag&quot;&gt;Source&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Mastery&quot; rel=&quot;clubhouseTag&quot;&gt;Mastery&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/developers&quot; rel=&quot;clubhouseTag&quot;&gt;developers&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Library&quot; rel=&quot;clubhouseTag&quot;&gt;Library&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Deployment&quot; rel=&quot;clubhouseTag&quot;&gt;Deployment&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/environment&quot; rel=&quot;clubhouseTag&quot;&gt;environment&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Tomcat&quot; rel=&quot;clubhouseTag&quot;&gt;Tomcat&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/JBoss&quot; rel=&quot;clubhouseTag&quot;&gt;JBoss&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Scarab&quot; rel=&quot;clubhouseTag&quot;&gt;Scarab&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/software&quot; rel=&quot;clubhouseTag&quot;&gt;software&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/desktop&quot; rel=&quot;clubhouseTag&quot;&gt;desktop&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/byte&quot; rel=&quot;clubhouseTag&quot;&gt;byte&lt;/a&gt;  &lt;br /&gt;     WordPress Tags: &lt;a href=&quot;http://wordpress.com/tag/Java&quot; rel=&quot;Tag&quot;&gt;Java&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/technology&quot; rel=&quot;Tag&quot;&gt;technology&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/solutions&quot; rel=&quot;Tag&quot;&gt;solutions&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/enterprise&quot; rel=&quot;Tag&quot;&gt;enterprise&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/servers&quot; rel=&quot;Tag&quot;&gt;servers&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/extent&quot; rel=&quot;Tag&quot;&gt;extent&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/beginner&quot; rel=&quot;Tag&quot;&gt;beginner&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/direction&quot; rel=&quot;Tag&quot;&gt;direction&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/example&quot; rel=&quot;Tag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Struts&quot; rel=&quot;Tag&quot;&gt;Struts&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Turbine&quot; rel=&quot;Tag&quot;&gt;Turbine&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Hybernate&quot; rel=&quot;Tag&quot;&gt;Hybernate&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Where&quot; rel=&quot;Tag&quot;&gt;Where&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/odyssey&quot; rel=&quot;Tag&quot;&gt;odyssey&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/developer&quot; rel=&quot;Tag&quot;&gt;developer&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/server&quot; rel=&quot;Tag&quot;&gt;server&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Platform&quot; rel=&quot;Tag&quot;&gt;Platform&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/development&quot; rel=&quot;Tag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/referrals&quot; rel=&quot;Tag&quot;&gt;referrals&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Standard&quot; rel=&quot;Tag&quot;&gt;Standard&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Edition&quot; rel=&quot;Tag&quot;&gt;Edition&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/JDBC&quot; rel=&quot;Tag&quot;&gt;JDBC&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Servlet&quot; rel=&quot;Tag&quot;&gt;Servlet&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/integration&quot; rel=&quot;Tag&quot;&gt;integration&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Service&quot; rel=&quot;Tag&quot;&gt;Service&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Micro&quot; rel=&quot;Tag&quot;&gt;Micro&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Pocket&quot; rel=&quot;Tag&quot;&gt;Pocket&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/PDAs&quot; rel=&quot;Tag&quot;&gt;PDAs&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/machine&quot; rel=&quot;Tag&quot;&gt;machine&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/memory&quot; rel=&quot;Tag&quot;&gt;memory&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/processor&quot; rel=&quot;Tag&quot;&gt;processor&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Chronology&quot; rel=&quot;Tag&quot;&gt;Chronology&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Determine&quot; rel=&quot;Tag&quot;&gt;Determine&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/portal&quot; rel=&quot;Tag&quot;&gt;portal&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/From&quot; rel=&quot;Tag&quot;&gt;From&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/agenda&quot; rel=&quot;Tag&quot;&gt;agenda&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Language&quot; rel=&quot;Tag&quot;&gt;Language&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/knowledge&quot; rel=&quot;Tag&quot;&gt;knowledge&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/concept&quot; rel=&quot;Tag&quot;&gt;concept&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Virtual&quot; rel=&quot;Tag&quot;&gt;Virtual&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/syntax&quot; rel=&quot;Tag&quot;&gt;syntax&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/data&quot; rel=&quot;Tag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/exception&quot; rel=&quot;Tag&quot;&gt;exception&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Basic&quot; rel=&quot;Tag&quot;&gt;Basic&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/libraries&quot; rel=&quot;Tag&quot;&gt;libraries&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/database&quot; rel=&quot;Tag&quot;&gt;database&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Enrichment&quot; rel=&quot;Tag&quot;&gt;Enrichment&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/client&quot; rel=&quot;Tag&quot;&gt;client&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/communication&quot; rel=&quot;Tag&quot;&gt;communication&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/protocol&quot; rel=&quot;Tag&quot;&gt;protocol&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Applet&quot; rel=&quot;Tag&quot;&gt;Applet&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Applications&quot; rel=&quot;Tag&quot;&gt;Applications&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/presentation&quot; rel=&quot;Tag&quot;&gt;presentation&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/layer&quot; rel=&quot;Tag&quot;&gt;layer&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Model&quot; rel=&quot;Tag&quot;&gt;Model&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/View&quot; rel=&quot;Tag&quot;&gt;View&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Controller&quot; rel=&quot;Tag&quot;&gt;Controller&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Remote&quot; rel=&quot;Tag&quot;&gt;Remote&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Method&quot; rel=&quot;Tag&quot;&gt;Method&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Invocation&quot; rel=&quot;Tag&quot;&gt;Invocation&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/basis&quot; rel=&quot;Tag&quot;&gt;basis&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/JNDI&quot; rel=&quot;Tag&quot;&gt;JNDI&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Directory&quot; rel=&quot;Tag&quot;&gt;Directory&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Interface&quot; rel=&quot;Tag&quot;&gt;Interface&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Transaction&quot; rel=&quot;Tag&quot;&gt;Transaction&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Main&quot; rel=&quot;Tag&quot;&gt;Main&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/technologies&quot; rel=&quot;Tag&quot;&gt;technologies&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Bean&quot; rel=&quot;Tag&quot;&gt;Bean&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Markup&quot; rel=&quot;Tag&quot;&gt;Markup&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/architecture&quot; rel=&quot;Tag&quot;&gt;architecture&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/SOAP&quot; rel=&quot;Tag&quot;&gt;SOAP&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/languages&quot; rel=&quot;Tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/platforms&quot; rel=&quot;Tag&quot;&gt;platforms&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Peer&quot; rel=&quot;Tag&quot;&gt;Peer&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Project&quot; rel=&quot;Tag&quot;&gt;Project&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Juxtapose&quot; rel=&quot;Tag&quot;&gt;Juxtapose&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/JXTA&quot; rel=&quot;Tag&quot;&gt;JXTA&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Mobile&quot; rel=&quot;Tag&quot;&gt;Mobile&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/MIDP&quot; rel=&quot;Tag&quot;&gt;MIDP&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Internet&quot; rel=&quot;Tag&quot;&gt;Internet&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Device&quot; rel=&quot;Tag&quot;&gt;Device&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Profile&quot; rel=&quot;Tag&quot;&gt;Profile&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Open&quot; rel=&quot;Tag&quot;&gt;Open&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Source&quot; rel=&quot;Tag&quot;&gt;Source&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Mastery&quot; rel=&quot;Tag&quot;&gt;Mastery&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/developers&quot; rel=&quot;Tag&quot;&gt;developers&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Library&quot; rel=&quot;Tag&quot;&gt;Library&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Deployment&quot; rel=&quot;Tag&quot;&gt;Deployment&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/environment&quot; rel=&quot;Tag&quot;&gt;environment&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Tomcat&quot; rel=&quot;Tag&quot;&gt;Tomcat&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/JBoss&quot; rel=&quot;Tag&quot;&gt;JBoss&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Scarab&quot; rel=&quot;Tag&quot;&gt;Scarab&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/software&quot; rel=&quot;Tag&quot;&gt;software&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/desktop&quot; rel=&quot;Tag&quot;&gt;desktop&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/byte&quot; rel=&quot;Tag&quot;&gt;byte&lt;/a&gt;  &lt;br /&gt;     Blogger Labels: &lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Java&quot; rel=&quot;Tag&quot;&gt;Java&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/technology&quot; rel=&quot;Tag&quot;&gt;technology&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/solutions&quot; rel=&quot;Tag&quot;&gt;solutions&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/enterprise&quot; rel=&quot;Tag&quot;&gt;enterprise&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/servers&quot; rel=&quot;Tag&quot;&gt;servers&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/extent&quot; rel=&quot;Tag&quot;&gt;extent&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/beginner&quot; rel=&quot;Tag&quot;&gt;beginner&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/direction&quot; rel=&quot;Tag&quot;&gt;direction&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/example&quot; rel=&quot;Tag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Struts&quot; rel=&quot;Tag&quot;&gt;Struts&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Turbine&quot; rel=&quot;Tag&quot;&gt;Turbine&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Hybernate&quot; rel=&quot;Tag&quot;&gt;Hybernate&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Where&quot; rel=&quot;Tag&quot;&gt;Where&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/odyssey&quot; rel=&quot;Tag&quot;&gt;odyssey&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/developer&quot; rel=&quot;Tag&quot;&gt;developer&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/server&quot; rel=&quot;Tag&quot;&gt;server&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Platform&quot; rel=&quot;Tag&quot;&gt;Platform&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/development&quot; rel=&quot;Tag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/referrals&quot; rel=&quot;Tag&quot;&gt;referrals&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Standard&quot; rel=&quot;Tag&quot;&gt;Standard&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Edition&quot; rel=&quot;Tag&quot;&gt;Edition&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/JDBC&quot; rel=&quot;Tag&quot;&gt;JDBC&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Servlet&quot; rel=&quot;Tag&quot;&gt;Servlet&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/integration&quot; rel=&quot;Tag&quot;&gt;integration&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Service&quot; rel=&quot;Tag&quot;&gt;Service&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Micro&quot; rel=&quot;Tag&quot;&gt;Micro&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Pocket&quot; rel=&quot;Tag&quot;&gt;Pocket&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/PDAs&quot; rel=&quot;Tag&quot;&gt;PDAs&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/machine&quot; rel=&quot;Tag&quot;&gt;machine&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/memory&quot; rel=&quot;Tag&quot;&gt;memory&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/processor&quot; rel=&quot;Tag&quot;&gt;processor&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Chronology&quot; rel=&quot;Tag&quot;&gt;Chronology&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Determine&quot; rel=&quot;Tag&quot;&gt;Determine&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/portal&quot; rel=&quot;Tag&quot;&gt;portal&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/From&quot; rel=&quot;Tag&quot;&gt;From&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/agenda&quot; rel=&quot;Tag&quot;&gt;agenda&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Language&quot; rel=&quot;Tag&quot;&gt;Language&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/knowledge&quot; rel=&quot;Tag&quot;&gt;knowledge&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/concept&quot; rel=&quot;Tag&quot;&gt;concept&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Virtual&quot; rel=&quot;Tag&quot;&gt;Virtual&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/syntax&quot; rel=&quot;Tag&quot;&gt;syntax&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/data&quot; rel=&quot;Tag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/exception&quot; rel=&quot;Tag&quot;&gt;exception&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Basic&quot; rel=&quot;Tag&quot;&gt;Basic&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/libraries&quot; rel=&quot;Tag&quot;&gt;libraries&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/database&quot; rel=&quot;Tag&quot;&gt;database&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Enrichment&quot; rel=&quot;Tag&quot;&gt;Enrichment&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/client&quot; rel=&quot;Tag&quot;&gt;client&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/communication&quot; rel=&quot;Tag&quot;&gt;communication&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/protocol&quot; rel=&quot;Tag&quot;&gt;protocol&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Applet&quot; rel=&quot;Tag&quot;&gt;Applet&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Applications&quot; rel=&quot;Tag&quot;&gt;Applications&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/presentation&quot; rel=&quot;Tag&quot;&gt;presentation&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/layer&quot; rel=&quot;Tag&quot;&gt;layer&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Model&quot; rel=&quot;Tag&quot;&gt;Model&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/View&quot; rel=&quot;Tag&quot;&gt;View&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Controller&quot; rel=&quot;Tag&quot;&gt;Controller&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Remote&quot; rel=&quot;Tag&quot;&gt;Remote&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Method&quot; rel=&quot;Tag&quot;&gt;Method&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Invocation&quot; rel=&quot;Tag&quot;&gt;Invocation&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/basis&quot; rel=&quot;Tag&quot;&gt;basis&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/JNDI&quot; rel=&quot;Tag&quot;&gt;JNDI&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Directory&quot; rel=&quot;Tag&quot;&gt;Directory&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Interface&quot; rel=&quot;Tag&quot;&gt;Interface&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Transaction&quot; rel=&quot;Tag&quot;&gt;Transaction&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Main&quot; rel=&quot;Tag&quot;&gt;Main&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/technologies&quot; rel=&quot;Tag&quot;&gt;technologies&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Bean&quot; rel=&quot;Tag&quot;&gt;Bean&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Markup&quot; rel=&quot;Tag&quot;&gt;Markup&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/architecture&quot; rel=&quot;Tag&quot;&gt;architecture&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/SOAP&quot; rel=&quot;Tag&quot;&gt;SOAP&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/languages&quot; rel=&quot;Tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/platforms&quot; rel=&quot;Tag&quot;&gt;platforms&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Peer&quot; rel=&quot;Tag&quot;&gt;Peer&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Project&quot; rel=&quot;Tag&quot;&gt;Project&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Juxtapose&quot; rel=&quot;Tag&quot;&gt;Juxtapose&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/JXTA&quot; rel=&quot;Tag&quot;&gt;JXTA&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Mobile&quot; rel=&quot;Tag&quot;&gt;Mobile&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/MIDP&quot; rel=&quot;Tag&quot;&gt;MIDP&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Internet&quot; rel=&quot;Tag&quot;&gt;Internet&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Device&quot; rel=&quot;Tag&quot;&gt;Device&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Profile&quot; rel=&quot;Tag&quot;&gt;Profile&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Open&quot; rel=&quot;Tag&quot;&gt;Open&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Source&quot; rel=&quot;Tag&quot;&gt;Source&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Mastery&quot; rel=&quot;Tag&quot;&gt;Mastery&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/developers&quot; rel=&quot;Tag&quot;&gt;developers&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Library&quot; rel=&quot;Tag&quot;&gt;Library&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Deployment&quot; rel=&quot;Tag&quot;&gt;Deployment&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/environment&quot; rel=&quot;Tag&quot;&gt;environment&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Tomcat&quot; rel=&quot;Tag&quot;&gt;Tomcat&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/JBoss&quot; rel=&quot;Tag&quot;&gt;JBoss&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Scarab&quot; rel=&quot;Tag&quot;&gt;Scarab&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/software&quot; rel=&quot;Tag&quot;&gt;software&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/desktop&quot; rel=&quot;Tag&quot;&gt;desktop&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/byte&quot; rel=&quot;Tag&quot;&gt;byte&lt;/a&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/8226837628009992206/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/flow-learning-java.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/8226837628009992206'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/8226837628009992206'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/flow-learning-java.html' title='Flow Learning Java'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhxo4nsNvXesnkkoGi9XzId9iExFODzx_flfL3zdps16nb0AjpyfzzFigqNaBdiD1pdvXQo4hR1UoWaijd3npKToNR0ZFxhNu1VpWzB4e9fajkIMkXeI0l2t0dHODFbxKlFWezrUz-g5F8/s72-c?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-1760452625300792702</id><published>2011-04-20T10:28:00.001+07:00</published><updated>2011-04-20T10:34:32.578+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Data Type &amp;amp; Constant</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float: none; margin: 0px; padding: 4px 0px 4px 0px;&quot;&gt;&lt;strong&gt;Data Type&amp;nbsp;&lt;/strong&gt;&lt;/div&gt;In PHP, the variable data type is not defined by the programmer, but     &lt;br /&gt;
automatically determined by the PHP interpreter. However, PHP supports 8     &lt;br /&gt;
(Eight) pieces of primitive data types, namely:     &lt;br /&gt;
1. boolean     &lt;br /&gt;
2. integer     &lt;br /&gt;
3. float     &lt;br /&gt;
4. string     &lt;br /&gt;
5. array     &lt;br /&gt;
6. object     &lt;br /&gt;
7. resource     &lt;br /&gt;
8. NULL     &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
PROBLEMS    &lt;br /&gt;
1. Creating a static variable value to display and save data majors     &lt;br /&gt;
lat03.php name.     &lt;br /&gt;
2. Creating a dynamic variable value to display and save data majors     &lt;br /&gt;
lat04.php name.     &lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;csharpcode&quot;&gt;&lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   1:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;?&lt;/span&gt; Php &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   2:  &lt;/span&gt;$ NIM = &quot;09.12.9999&quot;; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   3:  &lt;/span&gt;$ Name = &#39;STMIK AMIKOM YOGYAKARTA&#39;; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   4:  &lt;/span&gt;$ Age = 16; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   5:  &lt;/span&gt;$ Value = 82.25; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   6:  &lt;/span&gt;$ Status = TRUE; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   7:  &lt;/span&gt;echo &quot;NIM&quot;. $ NIM. &quot;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&quot;; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   8:  &lt;/span&gt;echo &quot;Name: $ name &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&quot;; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;   9:  &lt;/span&gt;print &quot;Age:&quot;. $ age; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  10:  &lt;/span&gt;print &quot;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&quot;; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;  11:  &lt;/span&gt;printf (&quot;Value:% .3 f &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&quot;, $ value); &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  12:  &lt;/span&gt;if ($ status) &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;  13:  &lt;/span&gt;echo &quot;Status: Active&quot;; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  14:  &lt;/span&gt;else &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;alt&quot;&gt;&lt;span class=&quot;lnum&quot;&gt;  15:  &lt;/span&gt;echo &quot;Status: Not Active&quot;; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  16:  &lt;/span&gt;?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;style type=&quot;text/css&quot;&gt;
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, &quot;Courier New&quot;, courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
&lt;/style&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Constant&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Constant is a variable whose value is fixed. Constant only rated at &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
beginning of the program and its value is never changed during the program runs.PHP has &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
defines some constants, eg: PHP_VERSION, ie constant &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
provide information about the PHP version being used. In addition to constants that have been &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
provided by the PHP we also can create their own constants. Writing rules &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
constants are as follows: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
define (&quot;nama_konstanta&quot;, &quot;nilai_konstanta&quot;) &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Examples of the use of constants: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Save with the name &quot;Lat05.php&quot; (Constant static value) &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;csharpcode&quot;&gt;&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   1:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;html&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   2:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   3:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; Using constants &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; title&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   4:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   5:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;body&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   6:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;?&lt;/span&gt; Php &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   7:  &lt;/span&gt;define (&quot;CAMPUS&quot;, &quot;STMIK AMIKOM YOGYAKARTA&quot;); &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   8:  &lt;/span&gt;define (&quot;SLOGAN&quot;, &quot;COLLEGE PLACE PEOPLE tie&quot;); &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   9:  &lt;/span&gt;print &quot;CAMPUS&quot;. CAMPUS; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  10:  &lt;/span&gt;echo &quot;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; SLOGAN:&quot;. SLOGAN; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  11:  &lt;/span&gt;?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  12:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; Body&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  13:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; Html&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;strong&gt;&lt;/strong&gt;&amp;nbsp;&lt;/pre&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;style type=&quot;text/css&quot;&gt;
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, &quot;Courier New&quot;, courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
&lt;/style&gt;&lt;strong&gt;OPERATOR in PHP &lt;br /&gt;
&lt;br /&gt;
&lt;/strong&gt;Type Operators Operator Description Example &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Arithmetic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
+ $ A + $ b Added &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- $ A - $ b Reduction &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* $ A * $ b Multiplication &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/ $ A / $ b Division &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
% $ A% $ b Modulus, residual distribution &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Assignment = $ a = 7; $ a is filled with 4 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Bitwise &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp; $ A &amp;amp; $ b Bitwise AND &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| $ A | $ b Bitwise OR &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
^ $ A ^ $ b Bitwise XOR &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
~ $ A ~ $ b Bitwise NOT &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;&amp;lt;$ A &amp;lt;&amp;lt;$ b Shift Left &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;gt;&amp;gt; $ A&amp;gt;&amp;gt; $ b Shift Right &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Comparison &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== $ A == $ b Same &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== $ A === $ b Identical &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
! = $ A! = $ B Not Same &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;&amp;gt; $ A &amp;lt;&amp;gt; $ b Not Same &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
! == $ A! == $ B Not identical &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;$ A &amp;lt;$ b Less than &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;gt; $ A&amp;gt; $ b More than &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;= $ A &amp;lt;= $ b Less than equal to &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;gt; = $ A&amp;gt; = $ b More than equal to &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Logic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
and $ a and $ b is TRUE if $ a and $ b TRUE &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp; &amp;amp; $ A &amp;amp; &amp;amp; $ b is TRUE if $ a and $ b TRUE &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
or $ a or $ b is TRUE if $ a or $ b is TRUE &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| | $ A | | $ b True if $ a and / or $ b is TRUE &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
xor $ a xor $ b is TRUE if $ a or $ b is TRUE, but &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
not both &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
! ! $ A TRUE if $ a is FALSE &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
String. $ A. $ B Merging strings $ a and $ b &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Save with the name operator.php &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;csharpcode&quot;&gt;&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   1:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;?&lt;/span&gt; Php &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   2:  &lt;/span&gt;$ Salary = 1000000; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   3:  &lt;/span&gt;$ Tax = 0.1; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   4:  &lt;/span&gt;$ THP = $ salary - ($ salary * $ tax); &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   5:  &lt;/span&gt;echo &quot;salary before tax = USD. $ salaries &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&quot;; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   6:  &lt;/span&gt;echo &quot;The salary taken home = Rp. $ THP&quot;; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   7:  &lt;/span&gt;?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;style type=&quot;text/css&quot;&gt;
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, &quot;Courier New&quot;, courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
&lt;/style&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Save with the name operator2.php&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;csharpcode&quot;&gt;&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   1:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;?&lt;/span&gt; Php &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   2:  &lt;/span&gt;$ A = 5; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   3:  &lt;/span&gt;$ B = 4; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   4:  &lt;/span&gt;echo &quot;$ a == $ b:&quot;. ($ A == $ b); &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   5:  &lt;/span&gt;echo &quot;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; $ a! = $ b:&quot;. ($ A! = $ B); &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   6:  &lt;/span&gt;echo &quot;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; $ a&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; $ b:&quot;. ($ A&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; $ b); &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   7:  &lt;/span&gt;echo &quot;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; $ a &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;$ b:&quot;. ($ A &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;$ b); &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   8:  &lt;/span&gt;echo &quot;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; ($ a == $ b) &amp;amp; &amp;amp; ($ a&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; $ b): &quot;.(($ a! = $ b) &amp;amp; &amp;amp; ($ a&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; $ b)); &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   9:  &lt;/span&gt;echo &quot;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; ($ a == $ b) | | ($ a&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; $ b): &quot;.(($ a! = $ b) | | ($ a&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; $ b)); &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  10:  &lt;/span&gt;?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;style type=&quot;text/css&quot;&gt;
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, &quot;Courier New&quot;, courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
&lt;/style&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;iframe frameborder=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/04/data-type-constant.html&quot; style=&quot;border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; height: 80px; width: 450px;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href=&quot;http://technorati.com/tags/Data&quot; rel=&quot;tag&quot;&gt;Data&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Type&quot; rel=&quot;tag&quot;&gt;Type&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Constant&quot; rel=&quot;tag&quot;&gt;Constant&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/programmer&quot; rel=&quot;tag&quot;&gt;programmer&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/interpreter&quot; rel=&quot;tag&quot;&gt;interpreter&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/integer&quot; rel=&quot;tag&quot;&gt;integer&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/resource&quot; rel=&quot;tag&quot;&gt;resource&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/NULL&quot; rel=&quot;tag&quot;&gt;NULL&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/OUTPUT&quot; rel=&quot;tag&quot;&gt;OUTPUT&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/PROBLEMS&quot; rel=&quot;tag&quot;&gt;PROBLEMS&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/majors&quot; rel=&quot;tag&quot;&gt;majors&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Name&quot; rel=&quot;tag&quot;&gt;Name&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/STMIK&quot; rel=&quot;tag&quot;&gt;STMIK&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/AMIKOM&quot; rel=&quot;tag&quot;&gt;AMIKOM&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/YOGYAKARTA&quot; rel=&quot;tag&quot;&gt;YOGYAKARTA&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Value&quot; rel=&quot;tag&quot;&gt;Value&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Status&quot; rel=&quot;tag&quot;&gt;Status&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/TRUE&quot; rel=&quot;tag&quot;&gt;TRUE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Active&quot; rel=&quot;tag&quot;&gt;Active&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/size&quot; rel=&quot;tag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Consolas&quot; rel=&quot;tag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Courier&quot; rel=&quot;tag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Monospace&quot; rel=&quot;tag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/margin&quot; rel=&quot;tag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/width&quot; rel=&quot;tag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/constants&quot; rel=&quot;tag&quot;&gt;constants&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/PHP_VERSION&quot; rel=&quot;tag&quot;&gt;PHP_VERSION&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/information&quot; rel=&quot;tag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/version&quot; rel=&quot;tag&quot;&gt;version&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/addition&quot; rel=&quot;tag&quot;&gt;addition&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Examples&quot; rel=&quot;tag&quot;&gt;Examples&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Save&quot; rel=&quot;tag&quot;&gt;Save&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/CAMPUS&quot; rel=&quot;tag&quot;&gt;CAMPUS&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/SLOGAN&quot; rel=&quot;tag&quot;&gt;SLOGAN&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/COLLEGE&quot; rel=&quot;tag&quot;&gt;COLLEGE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/PLACE&quot; rel=&quot;tag&quot;&gt;PLACE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/PEOPLE&quot; rel=&quot;tag&quot;&gt;PEOPLE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Body&quot; rel=&quot;tag&quot;&gt;Body&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Html&quot; rel=&quot;tag&quot;&gt;Html&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/OPERATOR&quot; rel=&quot;tag&quot;&gt;OPERATOR&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Operators&quot; rel=&quot;tag&quot;&gt;Operators&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Description&quot; rel=&quot;tag&quot;&gt;Description&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Example&quot; rel=&quot;tag&quot;&gt;Example&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Arithmetic&quot; rel=&quot;tag&quot;&gt;Arithmetic&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Reduction&quot; rel=&quot;tag&quot;&gt;Reduction&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Multiplication&quot; rel=&quot;tag&quot;&gt;Multiplication&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Division&quot; rel=&quot;tag&quot;&gt;Division&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Modulus&quot; rel=&quot;tag&quot;&gt;Modulus&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/distribution&quot; rel=&quot;tag&quot;&gt;distribution&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Assignment&quot; rel=&quot;tag&quot;&gt;Assignment&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Bitwise&quot; rel=&quot;tag&quot;&gt;Bitwise&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Shift&quot; rel=&quot;tag&quot;&gt;Shift&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Left&quot; rel=&quot;tag&quot;&gt;Left&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Comparison&quot; rel=&quot;tag&quot;&gt;Comparison&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Same&quot; rel=&quot;tag&quot;&gt;Same&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Identical&quot; rel=&quot;tag&quot;&gt;Identical&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Logic&quot; rel=&quot;tag&quot;&gt;Logic&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/FALSE&quot; rel=&quot;tag&quot;&gt;FALSE&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Salary&quot; rel=&quot;tag&quot;&gt;Salary&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/salaries&quot; rel=&quot;tag&quot;&gt;salaries&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/csharpcode&quot; rel=&quot;tag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/ffffff&quot; rel=&quot;tag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/kwrd&quot; rel=&quot;tag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/preproc&quot; rel=&quot;tag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/attr&quot; rel=&quot;tag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/lnum&quot; rel=&quot;tag&quot;&gt;lnum&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Windows Live Tags: &lt;a href=&quot;http://windows.live.com/connect/tag/Data&quot; rel=&quot;clubhouseTag&quot;&gt;Data&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Type&quot; rel=&quot;clubhouseTag&quot;&gt;Type&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Constant&quot; rel=&quot;clubhouseTag&quot;&gt;Constant&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/programmer&quot; rel=&quot;clubhouseTag&quot;&gt;programmer&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/interpreter&quot; rel=&quot;clubhouseTag&quot;&gt;interpreter&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/integer&quot; rel=&quot;clubhouseTag&quot;&gt;integer&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/resource&quot; rel=&quot;clubhouseTag&quot;&gt;resource&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/NULL&quot; rel=&quot;clubhouseTag&quot;&gt;NULL&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/OUTPUT&quot; rel=&quot;clubhouseTag&quot;&gt;OUTPUT&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/PROBLEMS&quot; rel=&quot;clubhouseTag&quot;&gt;PROBLEMS&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/majors&quot; rel=&quot;clubhouseTag&quot;&gt;majors&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Name&quot; rel=&quot;clubhouseTag&quot;&gt;Name&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/STMIK&quot; rel=&quot;clubhouseTag&quot;&gt;STMIK&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/AMIKOM&quot; rel=&quot;clubhouseTag&quot;&gt;AMIKOM&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/YOGYAKARTA&quot; rel=&quot;clubhouseTag&quot;&gt;YOGYAKARTA&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Value&quot; rel=&quot;clubhouseTag&quot;&gt;Value&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Status&quot; rel=&quot;clubhouseTag&quot;&gt;Status&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/TRUE&quot; rel=&quot;clubhouseTag&quot;&gt;TRUE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Active&quot; rel=&quot;clubhouseTag&quot;&gt;Active&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/size&quot; rel=&quot;clubhouseTag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Consolas&quot; rel=&quot;clubhouseTag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Courier&quot; rel=&quot;clubhouseTag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Monospace&quot; rel=&quot;clubhouseTag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/margin&quot; rel=&quot;clubhouseTag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/width&quot; rel=&quot;clubhouseTag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/constants&quot; rel=&quot;clubhouseTag&quot;&gt;constants&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/PHP_VERSION&quot; rel=&quot;clubhouseTag&quot;&gt;PHP_VERSION&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/information&quot; rel=&quot;clubhouseTag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/version&quot; rel=&quot;clubhouseTag&quot;&gt;version&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/addition&quot; rel=&quot;clubhouseTag&quot;&gt;addition&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Examples&quot; rel=&quot;clubhouseTag&quot;&gt;Examples&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Save&quot; rel=&quot;clubhouseTag&quot;&gt;Save&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/CAMPUS&quot; rel=&quot;clubhouseTag&quot;&gt;CAMPUS&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/SLOGAN&quot; rel=&quot;clubhouseTag&quot;&gt;SLOGAN&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/COLLEGE&quot; rel=&quot;clubhouseTag&quot;&gt;COLLEGE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/PLACE&quot; rel=&quot;clubhouseTag&quot;&gt;PLACE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/PEOPLE&quot; rel=&quot;clubhouseTag&quot;&gt;PEOPLE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Body&quot; rel=&quot;clubhouseTag&quot;&gt;Body&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Html&quot; rel=&quot;clubhouseTag&quot;&gt;Html&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/OPERATOR&quot; rel=&quot;clubhouseTag&quot;&gt;OPERATOR&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Operators&quot; rel=&quot;clubhouseTag&quot;&gt;Operators&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Description&quot; rel=&quot;clubhouseTag&quot;&gt;Description&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Example&quot; rel=&quot;clubhouseTag&quot;&gt;Example&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Arithmetic&quot; rel=&quot;clubhouseTag&quot;&gt;Arithmetic&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Reduction&quot; rel=&quot;clubhouseTag&quot;&gt;Reduction&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Multiplication&quot; rel=&quot;clubhouseTag&quot;&gt;Multiplication&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Division&quot; rel=&quot;clubhouseTag&quot;&gt;Division&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Modulus&quot; rel=&quot;clubhouseTag&quot;&gt;Modulus&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/distribution&quot; rel=&quot;clubhouseTag&quot;&gt;distribution&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Assignment&quot; rel=&quot;clubhouseTag&quot;&gt;Assignment&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Bitwise&quot; rel=&quot;clubhouseTag&quot;&gt;Bitwise&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Shift&quot; rel=&quot;clubhouseTag&quot;&gt;Shift&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Left&quot; rel=&quot;clubhouseTag&quot;&gt;Left&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Comparison&quot; rel=&quot;clubhouseTag&quot;&gt;Comparison&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Same&quot; rel=&quot;clubhouseTag&quot;&gt;Same&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Identical&quot; rel=&quot;clubhouseTag&quot;&gt;Identical&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Logic&quot; rel=&quot;clubhouseTag&quot;&gt;Logic&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/FALSE&quot; rel=&quot;clubhouseTag&quot;&gt;FALSE&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Salary&quot; rel=&quot;clubhouseTag&quot;&gt;Salary&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/salaries&quot; rel=&quot;clubhouseTag&quot;&gt;salaries&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/csharpcode&quot; rel=&quot;clubhouseTag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/ffffff&quot; rel=&quot;clubhouseTag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/kwrd&quot; rel=&quot;clubhouseTag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/preproc&quot; rel=&quot;clubhouseTag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/attr&quot; rel=&quot;clubhouseTag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/lnum&quot; rel=&quot;clubhouseTag&quot;&gt;lnum&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WordPress Tags: &lt;a href=&quot;http://wordpress.com/tag/Data&quot; rel=&quot;Tag&quot;&gt;Data&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Type&quot; rel=&quot;Tag&quot;&gt;Type&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Constant&quot; rel=&quot;Tag&quot;&gt;Constant&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/programmer&quot; rel=&quot;Tag&quot;&gt;programmer&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/interpreter&quot; rel=&quot;Tag&quot;&gt;interpreter&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/integer&quot; rel=&quot;Tag&quot;&gt;integer&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/resource&quot; rel=&quot;Tag&quot;&gt;resource&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/NULL&quot; rel=&quot;Tag&quot;&gt;NULL&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/OUTPUT&quot; rel=&quot;Tag&quot;&gt;OUTPUT&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/PROBLEMS&quot; rel=&quot;Tag&quot;&gt;PROBLEMS&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/majors&quot; rel=&quot;Tag&quot;&gt;majors&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Name&quot; rel=&quot;Tag&quot;&gt;Name&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/STMIK&quot; rel=&quot;Tag&quot;&gt;STMIK&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/AMIKOM&quot; rel=&quot;Tag&quot;&gt;AMIKOM&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/YOGYAKARTA&quot; rel=&quot;Tag&quot;&gt;YOGYAKARTA&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Value&quot; rel=&quot;Tag&quot;&gt;Value&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Status&quot; rel=&quot;Tag&quot;&gt;Status&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/TRUE&quot; rel=&quot;Tag&quot;&gt;TRUE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Active&quot; rel=&quot;Tag&quot;&gt;Active&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/size&quot; rel=&quot;Tag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Consolas&quot; rel=&quot;Tag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Courier&quot; rel=&quot;Tag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Monospace&quot; rel=&quot;Tag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/margin&quot; rel=&quot;Tag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/width&quot; rel=&quot;Tag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/constants&quot; rel=&quot;Tag&quot;&gt;constants&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/PHP_VERSION&quot; rel=&quot;Tag&quot;&gt;PHP_VERSION&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/information&quot; rel=&quot;Tag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/version&quot; rel=&quot;Tag&quot;&gt;version&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/addition&quot; rel=&quot;Tag&quot;&gt;addition&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Examples&quot; rel=&quot;Tag&quot;&gt;Examples&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Save&quot; rel=&quot;Tag&quot;&gt;Save&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/CAMPUS&quot; rel=&quot;Tag&quot;&gt;CAMPUS&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/SLOGAN&quot; rel=&quot;Tag&quot;&gt;SLOGAN&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/COLLEGE&quot; rel=&quot;Tag&quot;&gt;COLLEGE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/PLACE&quot; rel=&quot;Tag&quot;&gt;PLACE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/PEOPLE&quot; rel=&quot;Tag&quot;&gt;PEOPLE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Body&quot; rel=&quot;Tag&quot;&gt;Body&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Html&quot; rel=&quot;Tag&quot;&gt;Html&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/OPERATOR&quot; rel=&quot;Tag&quot;&gt;OPERATOR&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Operators&quot; rel=&quot;Tag&quot;&gt;Operators&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Description&quot; rel=&quot;Tag&quot;&gt;Description&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Example&quot; rel=&quot;Tag&quot;&gt;Example&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Arithmetic&quot; rel=&quot;Tag&quot;&gt;Arithmetic&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Reduction&quot; rel=&quot;Tag&quot;&gt;Reduction&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Multiplication&quot; rel=&quot;Tag&quot;&gt;Multiplication&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Division&quot; rel=&quot;Tag&quot;&gt;Division&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Modulus&quot; rel=&quot;Tag&quot;&gt;Modulus&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/distribution&quot; rel=&quot;Tag&quot;&gt;distribution&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Assignment&quot; rel=&quot;Tag&quot;&gt;Assignment&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Bitwise&quot; rel=&quot;Tag&quot;&gt;Bitwise&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Shift&quot; rel=&quot;Tag&quot;&gt;Shift&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Left&quot; rel=&quot;Tag&quot;&gt;Left&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Comparison&quot; rel=&quot;Tag&quot;&gt;Comparison&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Same&quot; rel=&quot;Tag&quot;&gt;Same&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Identical&quot; rel=&quot;Tag&quot;&gt;Identical&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Logic&quot; rel=&quot;Tag&quot;&gt;Logic&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/FALSE&quot; rel=&quot;Tag&quot;&gt;FALSE&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Salary&quot; rel=&quot;Tag&quot;&gt;Salary&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/salaries&quot; rel=&quot;Tag&quot;&gt;salaries&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/csharpcode&quot; rel=&quot;Tag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/ffffff&quot; rel=&quot;Tag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/kwrd&quot; rel=&quot;Tag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/preproc&quot; rel=&quot;Tag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/attr&quot; rel=&quot;Tag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/lnum&quot; rel=&quot;Tag&quot;&gt;lnum&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Blogger Labels: &lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Data&quot; rel=&quot;Tag&quot;&gt;Data&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Type&quot; rel=&quot;Tag&quot;&gt;Type&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Constant&quot; rel=&quot;Tag&quot;&gt;Constant&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/programmer&quot; rel=&quot;Tag&quot;&gt;programmer&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/interpreter&quot; rel=&quot;Tag&quot;&gt;interpreter&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/integer&quot; rel=&quot;Tag&quot;&gt;integer&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/resource&quot; rel=&quot;Tag&quot;&gt;resource&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/NULL&quot; rel=&quot;Tag&quot;&gt;NULL&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/OUTPUT&quot; rel=&quot;Tag&quot;&gt;OUTPUT&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/PROBLEMS&quot; rel=&quot;Tag&quot;&gt;PROBLEMS&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/majors&quot; rel=&quot;Tag&quot;&gt;majors&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Name&quot; rel=&quot;Tag&quot;&gt;Name&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/STMIK&quot; rel=&quot;Tag&quot;&gt;STMIK&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/AMIKOM&quot; rel=&quot;Tag&quot;&gt;AMIKOM&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/YOGYAKARTA&quot; rel=&quot;Tag&quot;&gt;YOGYAKARTA&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Value&quot; rel=&quot;Tag&quot;&gt;Value&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Status&quot; rel=&quot;Tag&quot;&gt;Status&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/TRUE&quot; rel=&quot;Tag&quot;&gt;TRUE&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Active&quot; rel=&quot;Tag&quot;&gt;Active&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/size&quot; rel=&quot;Tag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Consolas&quot; rel=&quot;Tag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Courier&quot; rel=&quot;Tag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Monospace&quot; rel=&quot;Tag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/margin&quot; rel=&quot;Tag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/width&quot; rel=&quot;Tag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/constants&quot; rel=&quot;Tag&quot;&gt;constants&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/PHP_VERSION&quot; rel=&quot;Tag&quot;&gt;PHP_VERSION&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/information&quot; rel=&quot;Tag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/version&quot; rel=&quot;Tag&quot;&gt;version&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/addition&quot; rel=&quot;Tag&quot;&gt;addition&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Examples&quot; rel=&quot;Tag&quot;&gt;Examples&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Save&quot; rel=&quot;Tag&quot;&gt;Save&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/CAMPUS&quot; rel=&quot;Tag&quot;&gt;CAMPUS&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/SLOGAN&quot; rel=&quot;Tag&quot;&gt;SLOGAN&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/COLLEGE&quot; rel=&quot;Tag&quot;&gt;COLLEGE&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/PLACE&quot; rel=&quot;Tag&quot;&gt;PLACE&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/PEOPLE&quot; rel=&quot;Tag&quot;&gt;PEOPLE&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Body&quot; rel=&quot;Tag&quot;&gt;Body&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Html&quot; rel=&quot;Tag&quot;&gt;Html&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/OPERATOR&quot; rel=&quot;Tag&quot;&gt;OPERATOR&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Operators&quot; rel=&quot;Tag&quot;&gt;Operators&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Description&quot; rel=&quot;Tag&quot;&gt;Description&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Example&quot; rel=&quot;Tag&quot;&gt;Example&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Arithmetic&quot; rel=&quot;Tag&quot;&gt;Arithmetic&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Reduction&quot; rel=&quot;Tag&quot;&gt;Reduction&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Multiplication&quot; rel=&quot;Tag&quot;&gt;Multiplication&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Division&quot; rel=&quot;Tag&quot;&gt;Division&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Modulus&quot; rel=&quot;Tag&quot;&gt;Modulus&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/distribution&quot; rel=&quot;Tag&quot;&gt;distribution&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Assignment&quot; rel=&quot;Tag&quot;&gt;Assignment&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Bitwise&quot; rel=&quot;Tag&quot;&gt;Bitwise&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Shift&quot; rel=&quot;Tag&quot;&gt;Shift&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Left&quot; rel=&quot;Tag&quot;&gt;Left&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Comparison&quot; rel=&quot;Tag&quot;&gt;Comparison&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Same&quot; rel=&quot;Tag&quot;&gt;Same&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Identical&quot; rel=&quot;Tag&quot;&gt;Identical&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Logic&quot; rel=&quot;Tag&quot;&gt;Logic&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/FALSE&quot; rel=&quot;Tag&quot;&gt;FALSE&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/Salary&quot; rel=&quot;Tag&quot;&gt;Salary&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/salaries&quot; rel=&quot;Tag&quot;&gt;salaries&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/csharpcode&quot; rel=&quot;Tag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/ffffff&quot; rel=&quot;Tag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/kwrd&quot; rel=&quot;Tag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/preproc&quot; rel=&quot;Tag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/attr&quot; rel=&quot;Tag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://http//programminghaha.blogspot.com.blogspot.com/search/label/lnum&quot; rel=&quot;Tag&quot;&gt;lnum&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/1760452625300792702/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/data-type-constant.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/1760452625300792702'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/1760452625300792702'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/data-type-constant.html' title='Data Type &amp;amp; Constant'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-7485736214139599865</id><published>2011-04-19T22:59:00.001+07:00</published><updated>2011-04-19T23:00:07.796+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Variable</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/04/variable.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;p align=&quot;left&quot;&gt;In every programming language we will certainly encounter the concept of variable.Variable is a place in memory to store data whose value can be changed during program run.In PHP, every variable always begins with the sign &#39;$&#39; and followed by the name of the variable, regardless of whether the data is integer, real or string, PHP will automatically convert the data according to type. Variable names can be any combination of letters of the alphabet and numbers with a maximum length of 32 characters. But unlike in most other programming languages ​​that require us to declare variables in advance, variables in PHP do not have to be declared before the variable is used. Varabel represented by certain words with the rules of writing as follows:&lt;/p&gt;  &lt;a name=&#39;more&#39;&gt;&lt;/a&gt;  &lt;p align=&quot;left&quot;&gt;   &lt;br /&gt;1. Variables begin with a dollar sign ($).    &lt;br /&gt;2. The length is unlimited.    &lt;br /&gt;3. It should begin with the letter or underscore (_). The next character can only contain letters, numbers, and certain characters are allowed (ASCII characters from 127-255).    &lt;br /&gt;4. May not use punctuation.    &lt;br /&gt;5. Case sensitive or uppercase and lowercase letters are different.    &lt;br /&gt;6. Do not use a word that is the built-in PHP.    &lt;br /&gt;7. No need to be declared    &lt;br /&gt;8. Can not contain spaces.    &lt;br /&gt;Examples of Variables:    &lt;br /&gt;True False    &lt;br /&gt; $ _name    &lt;br /&gt; $ first_name    &lt;br /&gt; $ name3    &lt;br /&gt; $ name_3    &lt;br /&gt; $ 3name    &lt;br /&gt; $ name?    &lt;br /&gt; $ first + name    &lt;br /&gt; $ first.name    &lt;br /&gt; $ first name    &lt;br /&gt;In addition to the above matters, there are still some more criteria to consider    &lt;br /&gt;in writing the PHP script as follows:    &lt;br /&gt;a. Each page that contains PHP script must be saved with the extension PHP    &lt;br /&gt;according to the PHP program that supports it. For example: nama_file.php, or    &lt;br /&gt;nama_file.php3, or nama_file.php4.    &lt;br /&gt;b. Each script must be preceded by an opening PHP PHP (&amp;lt;? Php etc.) and    &lt;br /&gt;then concluded with closing (?&amp;gt;).    &lt;br /&gt;c. Each line of the script content should be preceded by a print statement like write in Pascal,    &lt;br /&gt;the Print and Echo. Writing criteria are as follows:    &lt;br /&gt; Print (&amp;quot;The order&amp;quot;)    &lt;br /&gt; printf (&amp;quot;The order&amp;quot;);    &lt;br /&gt; Echo &amp;quot;The order&amp;quot;;    &lt;br /&gt; Echo command    &lt;br /&gt;d. Each end of the command line must end with a semicolon (;). Suppose we would write &amp;quot;Hahan&amp;quot;, then the script to be written is: &amp;lt;? php print (&amp;quot;haha&amp;quot;);?&amp;gt;.&lt;/p&gt;  &lt;p align=&quot;left&quot;&gt;&amp;#160;&lt;/p&gt;  &lt;div class=&quot;csharpcode&quot;&gt;   &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   1:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;html&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   2:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   3:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; Using variables &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; title&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   4:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   5:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;body&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   6:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;?&lt;/span&gt; Php &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   7:  &lt;/span&gt;$ Name = &amp;quot;STMIK AMIKOM YOGYAKARTA&amp;quot;; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   8:  &lt;/span&gt;echo (&amp;quot;Name: $ name&amp;quot;); &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   9:  &lt;/span&gt;?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  10:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; Body&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  11:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; Html&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;style type=&quot;text/css&quot;&gt;&lt;br /&gt;.csharpcode, .csharpcode pre&lt;br /&gt;{&lt;br /&gt;	font-size: small;&lt;br /&gt;	color: black;&lt;br /&gt;	font-family: consolas, &quot;Courier New&quot;, courier, monospace;&lt;br /&gt;	background-color: #ffffff;&lt;br /&gt;	/*white-space: pre;*/&lt;br /&gt;}&lt;br /&gt;.csharpcode pre { margin: 0em; }&lt;br /&gt;.csharpcode .rem { color: #008000; }&lt;br /&gt;.csharpcode .kwrd { color: #0000ff; }&lt;br /&gt;.csharpcode .str { color: #006080; }&lt;br /&gt;.csharpcode .op { color: #0000c0; }&lt;br /&gt;.csharpcode .preproc { color: #cc6633; }&lt;br /&gt;.csharpcode .asp { background-color: #ffff00; }&lt;br /&gt;.csharpcode .html { color: #800000; }&lt;br /&gt;.csharpcode .attr { color: #ff0000; }&lt;br /&gt;.csharpcode .alt &lt;br /&gt;{&lt;br /&gt;	background-color: #f4f4f4;&lt;br /&gt;	width: 100%;&lt;br /&gt;	margin: 0em;&lt;br /&gt;}&lt;br /&gt;.csharpcode .lnum { color: #606060; }&lt;/style&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;dinamis&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;csharpcode&quot;&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   1:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;html&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   2:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   3:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; Using variables &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; title&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   4:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   5:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;body&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   6:  &lt;/span&gt;action=&amp;quot;lat02.php&amp;quot; &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;form&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;method&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;post&amp;quot;&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   7:  &lt;/span&gt;Enter your Name = &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;input&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;type&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;text&amp;quot;&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;nama&amp;quot;&lt;/span&gt; &lt;span class=&quot;kwrd&quot;&gt;/&amp;gt;&lt;/span&gt; &lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;br&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   8:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;html&quot;&gt;input&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;type&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;submit&amp;quot;&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;submit&amp;quot;&lt;/span&gt; &lt;span class=&quot;attr&quot;&gt;value&lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;=&amp;quot;simpan&amp;quot;&lt;/span&gt; &lt;span class=&quot;kwrd&quot;&gt;/&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;   9:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; Form&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  10:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;?&lt;/span&gt; Php &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  11:  &lt;/span&gt;echo (&amp;quot;Name: $ _POST [name]&amp;quot;); &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  12:  &lt;/span&gt;?&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  13:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; Body&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;  &lt;pre&gt;&lt;span class=&quot;lnum&quot;&gt;  14:  &lt;/span&gt;&lt;span class=&quot;kwrd&quot;&gt;&amp;lt;/&lt;/span&gt; Html&lt;span class=&quot;kwrd&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;style type=&quot;text/css&quot;&gt;&lt;br /&gt;.csharpcode, .csharpcode pre&lt;br /&gt;{&lt;br /&gt;	font-size: small;&lt;br /&gt;	color: black;&lt;br /&gt;	font-family: consolas, &quot;Courier New&quot;, courier, monospace;&lt;br /&gt;	background-color: #ffffff;&lt;br /&gt;	/*white-space: pre;*/&lt;br /&gt;}&lt;br /&gt;.csharpcode pre { margin: 0em; }&lt;br /&gt;.csharpcode .rem { color: #008000; }&lt;br /&gt;.csharpcode .kwrd { color: #0000ff; }&lt;br /&gt;.csharpcode .str { color: #006080; }&lt;br /&gt;.csharpcode .op { color: #0000c0; }&lt;br /&gt;.csharpcode .preproc { color: #cc6633; }&lt;br /&gt;.csharpcode .asp { background-color: #ffff00; }&lt;br /&gt;.csharpcode .html { color: #800000; }&lt;br /&gt;.csharpcode .attr { color: #ff0000; }&lt;br /&gt;.csharpcode .alt &lt;br /&gt;{&lt;br /&gt;	background-color: #f4f4f4;&lt;br /&gt;	width: 100%;&lt;br /&gt;	margin: 0em;&lt;br /&gt;}&lt;br /&gt;.csharpcode .lnum { color: #606060; }&lt;/style&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;save with name lat02.php&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Technorati Tags: &lt;a href=&quot;http://technorati.com/tags/Variable&quot; rel=&quot;tag&quot;&gt;Variable&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/concept&quot; rel=&quot;tag&quot;&gt;concept&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/memory&quot; rel=&quot;tag&quot;&gt;memory&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/data&quot; rel=&quot;tag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/integer&quot; rel=&quot;tag&quot;&gt;integer&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/combination&quot; rel=&quot;tag&quot;&gt;combination&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/alphabet&quot; rel=&quot;tag&quot;&gt;alphabet&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/length&quot; rel=&quot;tag&quot;&gt;length&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/languages&quot; rel=&quot;tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Varabel&quot; rel=&quot;tag&quot;&gt;Varabel&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Variables&quot; rel=&quot;tag&quot;&gt;Variables&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/dollar&quot; rel=&quot;tag&quot;&gt;dollar&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/letter&quot; rel=&quot;tag&quot;&gt;letter&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/ASCII&quot; rel=&quot;tag&quot;&gt;ASCII&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Case&quot; rel=&quot;tag&quot;&gt;Case&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Examples&quot; rel=&quot;tag&quot;&gt;Examples&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/True&quot; rel=&quot;tag&quot;&gt;True&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/False&quot; rel=&quot;tag&quot;&gt;False&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/_name&quot; rel=&quot;tag&quot;&gt;_name&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/addition&quot; rel=&quot;tag&quot;&gt;addition&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/criteria&quot; rel=&quot;tag&quot;&gt;criteria&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/script&quot; rel=&quot;tag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/extension&quot; rel=&quot;tag&quot;&gt;extension&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/example&quot; rel=&quot;tag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/statement&quot; rel=&quot;tag&quot;&gt;statement&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Pascal&quot; rel=&quot;tag&quot;&gt;Pascal&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Print&quot; rel=&quot;tag&quot;&gt;Print&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Echo&quot; rel=&quot;tag&quot;&gt;Echo&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Suppose&quot; rel=&quot;tag&quot;&gt;Suppose&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Hahan&quot; rel=&quot;tag&quot;&gt;Hahan&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Name&quot; rel=&quot;tag&quot;&gt;Name&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/STMIK&quot; rel=&quot;tag&quot;&gt;STMIK&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/AMIKOM&quot; rel=&quot;tag&quot;&gt;AMIKOM&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/YOGYAKARTA&quot; rel=&quot;tag&quot;&gt;YOGYAKARTA&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Body&quot; rel=&quot;tag&quot;&gt;Body&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Html&quot; rel=&quot;tag&quot;&gt;Html&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/size&quot; rel=&quot;tag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Consolas&quot; rel=&quot;tag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Courier&quot; rel=&quot;tag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Monospace&quot; rel=&quot;tag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/margin&quot; rel=&quot;tag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/width&quot; rel=&quot;tag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/action&quot; rel=&quot;tag&quot;&gt;action&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/method&quot; rel=&quot;tag&quot;&gt;method&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Enter&quot; rel=&quot;tag&quot;&gt;Enter&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/text&quot; rel=&quot;tag&quot;&gt;text&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Form&quot; rel=&quot;tag&quot;&gt;Form&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/_POST&quot; rel=&quot;tag&quot;&gt;_POST&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/nama_file&quot; rel=&quot;tag&quot;&gt;nama_file&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/csharpcode&quot; rel=&quot;tag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/ffffff&quot; rel=&quot;tag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/kwrd&quot; rel=&quot;tag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/preproc&quot; rel=&quot;tag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/attr&quot; rel=&quot;tag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/lnum&quot; rel=&quot;tag&quot;&gt;lnum&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Windows Live Tags: &lt;a href=&quot;http://windows.live.com/connect/tag/Variable&quot; rel=&quot;clubhouseTag&quot;&gt;Variable&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/concept&quot; rel=&quot;clubhouseTag&quot;&gt;concept&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/memory&quot; rel=&quot;clubhouseTag&quot;&gt;memory&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/data&quot; rel=&quot;clubhouseTag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/integer&quot; rel=&quot;clubhouseTag&quot;&gt;integer&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/combination&quot; rel=&quot;clubhouseTag&quot;&gt;combination&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/alphabet&quot; rel=&quot;clubhouseTag&quot;&gt;alphabet&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/length&quot; rel=&quot;clubhouseTag&quot;&gt;length&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/languages&quot; rel=&quot;clubhouseTag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Varabel&quot; rel=&quot;clubhouseTag&quot;&gt;Varabel&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Variables&quot; rel=&quot;clubhouseTag&quot;&gt;Variables&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/dollar&quot; rel=&quot;clubhouseTag&quot;&gt;dollar&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/letter&quot; rel=&quot;clubhouseTag&quot;&gt;letter&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/ASCII&quot; rel=&quot;clubhouseTag&quot;&gt;ASCII&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Case&quot; rel=&quot;clubhouseTag&quot;&gt;Case&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Examples&quot; rel=&quot;clubhouseTag&quot;&gt;Examples&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/True&quot; rel=&quot;clubhouseTag&quot;&gt;True&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/False&quot; rel=&quot;clubhouseTag&quot;&gt;False&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/_name&quot; rel=&quot;clubhouseTag&quot;&gt;_name&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/addition&quot; rel=&quot;clubhouseTag&quot;&gt;addition&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/criteria&quot; rel=&quot;clubhouseTag&quot;&gt;criteria&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/script&quot; rel=&quot;clubhouseTag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/extension&quot; rel=&quot;clubhouseTag&quot;&gt;extension&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/example&quot; rel=&quot;clubhouseTag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/statement&quot; rel=&quot;clubhouseTag&quot;&gt;statement&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Pascal&quot; rel=&quot;clubhouseTag&quot;&gt;Pascal&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Print&quot; rel=&quot;clubhouseTag&quot;&gt;Print&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Echo&quot; rel=&quot;clubhouseTag&quot;&gt;Echo&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Suppose&quot; rel=&quot;clubhouseTag&quot;&gt;Suppose&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Hahan&quot; rel=&quot;clubhouseTag&quot;&gt;Hahan&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Name&quot; rel=&quot;clubhouseTag&quot;&gt;Name&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/STMIK&quot; rel=&quot;clubhouseTag&quot;&gt;STMIK&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/AMIKOM&quot; rel=&quot;clubhouseTag&quot;&gt;AMIKOM&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/YOGYAKARTA&quot; rel=&quot;clubhouseTag&quot;&gt;YOGYAKARTA&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Body&quot; rel=&quot;clubhouseTag&quot;&gt;Body&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Html&quot; rel=&quot;clubhouseTag&quot;&gt;Html&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/size&quot; rel=&quot;clubhouseTag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Consolas&quot; rel=&quot;clubhouseTag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Courier&quot; rel=&quot;clubhouseTag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Monospace&quot; rel=&quot;clubhouseTag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/margin&quot; rel=&quot;clubhouseTag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/width&quot; rel=&quot;clubhouseTag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/action&quot; rel=&quot;clubhouseTag&quot;&gt;action&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/method&quot; rel=&quot;clubhouseTag&quot;&gt;method&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Enter&quot; rel=&quot;clubhouseTag&quot;&gt;Enter&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/text&quot; rel=&quot;clubhouseTag&quot;&gt;text&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Form&quot; rel=&quot;clubhouseTag&quot;&gt;Form&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/_POST&quot; rel=&quot;clubhouseTag&quot;&gt;_POST&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/nama_file&quot; rel=&quot;clubhouseTag&quot;&gt;nama_file&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/csharpcode&quot; rel=&quot;clubhouseTag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/ffffff&quot; rel=&quot;clubhouseTag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/kwrd&quot; rel=&quot;clubhouseTag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/preproc&quot; rel=&quot;clubhouseTag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/attr&quot; rel=&quot;clubhouseTag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/lnum&quot; rel=&quot;clubhouseTag&quot;&gt;lnum&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;WordPress Tags: &lt;a href=&quot;http://wordpress.com/tag/Variable&quot; rel=&quot;Tag&quot;&gt;Variable&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/concept&quot; rel=&quot;Tag&quot;&gt;concept&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/memory&quot; rel=&quot;Tag&quot;&gt;memory&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/data&quot; rel=&quot;Tag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/integer&quot; rel=&quot;Tag&quot;&gt;integer&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/combination&quot; rel=&quot;Tag&quot;&gt;combination&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/alphabet&quot; rel=&quot;Tag&quot;&gt;alphabet&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/length&quot; rel=&quot;Tag&quot;&gt;length&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/languages&quot; rel=&quot;Tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Varabel&quot; rel=&quot;Tag&quot;&gt;Varabel&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Variables&quot; rel=&quot;Tag&quot;&gt;Variables&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/dollar&quot; rel=&quot;Tag&quot;&gt;dollar&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/letter&quot; rel=&quot;Tag&quot;&gt;letter&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/ASCII&quot; rel=&quot;Tag&quot;&gt;ASCII&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Case&quot; rel=&quot;Tag&quot;&gt;Case&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Examples&quot; rel=&quot;Tag&quot;&gt;Examples&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/True&quot; rel=&quot;Tag&quot;&gt;True&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/False&quot; rel=&quot;Tag&quot;&gt;False&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/_name&quot; rel=&quot;Tag&quot;&gt;_name&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/addition&quot; rel=&quot;Tag&quot;&gt;addition&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/criteria&quot; rel=&quot;Tag&quot;&gt;criteria&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/script&quot; rel=&quot;Tag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/extension&quot; rel=&quot;Tag&quot;&gt;extension&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/example&quot; rel=&quot;Tag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/statement&quot; rel=&quot;Tag&quot;&gt;statement&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Pascal&quot; rel=&quot;Tag&quot;&gt;Pascal&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Print&quot; rel=&quot;Tag&quot;&gt;Print&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Echo&quot; rel=&quot;Tag&quot;&gt;Echo&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Suppose&quot; rel=&quot;Tag&quot;&gt;Suppose&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Hahan&quot; rel=&quot;Tag&quot;&gt;Hahan&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Name&quot; rel=&quot;Tag&quot;&gt;Name&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/STMIK&quot; rel=&quot;Tag&quot;&gt;STMIK&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/AMIKOM&quot; rel=&quot;Tag&quot;&gt;AMIKOM&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/YOGYAKARTA&quot; rel=&quot;Tag&quot;&gt;YOGYAKARTA&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Body&quot; rel=&quot;Tag&quot;&gt;Body&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Html&quot; rel=&quot;Tag&quot;&gt;Html&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/size&quot; rel=&quot;Tag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Consolas&quot; rel=&quot;Tag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Courier&quot; rel=&quot;Tag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Monospace&quot; rel=&quot;Tag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/margin&quot; rel=&quot;Tag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/width&quot; rel=&quot;Tag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/action&quot; rel=&quot;Tag&quot;&gt;action&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/method&quot; rel=&quot;Tag&quot;&gt;method&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Enter&quot; rel=&quot;Tag&quot;&gt;Enter&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/text&quot; rel=&quot;Tag&quot;&gt;text&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Form&quot; rel=&quot;Tag&quot;&gt;Form&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/_POST&quot; rel=&quot;Tag&quot;&gt;_POST&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/nama_file&quot; rel=&quot;Tag&quot;&gt;nama_file&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/csharpcode&quot; rel=&quot;Tag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/ffffff&quot; rel=&quot;Tag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/kwrd&quot; rel=&quot;Tag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/preproc&quot; rel=&quot;Tag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/attr&quot; rel=&quot;Tag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/lnum&quot; rel=&quot;Tag&quot;&gt;lnum&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Blogger Labels: &lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Variable&quot; rel=&quot;Tag&quot;&gt;Variable&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/concept&quot; rel=&quot;Tag&quot;&gt;concept&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/memory&quot; rel=&quot;Tag&quot;&gt;memory&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/data&quot; rel=&quot;Tag&quot;&gt;data&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/integer&quot; rel=&quot;Tag&quot;&gt;integer&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/combination&quot; rel=&quot;Tag&quot;&gt;combination&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/alphabet&quot; rel=&quot;Tag&quot;&gt;alphabet&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/length&quot; rel=&quot;Tag&quot;&gt;length&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/languages&quot; rel=&quot;Tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Varabel&quot; rel=&quot;Tag&quot;&gt;Varabel&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Variables&quot; rel=&quot;Tag&quot;&gt;Variables&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/dollar&quot; rel=&quot;Tag&quot;&gt;dollar&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/letter&quot; rel=&quot;Tag&quot;&gt;letter&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/ASCII&quot; rel=&quot;Tag&quot;&gt;ASCII&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Case&quot; rel=&quot;Tag&quot;&gt;Case&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Examples&quot; rel=&quot;Tag&quot;&gt;Examples&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/True&quot; rel=&quot;Tag&quot;&gt;True&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/False&quot; rel=&quot;Tag&quot;&gt;False&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/_name&quot; rel=&quot;Tag&quot;&gt;_name&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/addition&quot; rel=&quot;Tag&quot;&gt;addition&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/criteria&quot; rel=&quot;Tag&quot;&gt;criteria&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/script&quot; rel=&quot;Tag&quot;&gt;script&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/extension&quot; rel=&quot;Tag&quot;&gt;extension&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/example&quot; rel=&quot;Tag&quot;&gt;example&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/statement&quot; rel=&quot;Tag&quot;&gt;statement&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Pascal&quot; rel=&quot;Tag&quot;&gt;Pascal&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Print&quot; rel=&quot;Tag&quot;&gt;Print&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Echo&quot; rel=&quot;Tag&quot;&gt;Echo&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Suppose&quot; rel=&quot;Tag&quot;&gt;Suppose&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Hahan&quot; rel=&quot;Tag&quot;&gt;Hahan&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Name&quot; rel=&quot;Tag&quot;&gt;Name&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/STMIK&quot; rel=&quot;Tag&quot;&gt;STMIK&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/AMIKOM&quot; rel=&quot;Tag&quot;&gt;AMIKOM&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/YOGYAKARTA&quot; rel=&quot;Tag&quot;&gt;YOGYAKARTA&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Body&quot; rel=&quot;Tag&quot;&gt;Body&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Html&quot; rel=&quot;Tag&quot;&gt;Html&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/size&quot; rel=&quot;Tag&quot;&gt;size&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Consolas&quot; rel=&quot;Tag&quot;&gt;Consolas&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Courier&quot; rel=&quot;Tag&quot;&gt;Courier&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Monospace&quot; rel=&quot;Tag&quot;&gt;Monospace&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/margin&quot; rel=&quot;Tag&quot;&gt;margin&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/width&quot; rel=&quot;Tag&quot;&gt;width&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/action&quot; rel=&quot;Tag&quot;&gt;action&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/method&quot; rel=&quot;Tag&quot;&gt;method&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Enter&quot; rel=&quot;Tag&quot;&gt;Enter&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/text&quot; rel=&quot;Tag&quot;&gt;text&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Form&quot; rel=&quot;Tag&quot;&gt;Form&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/_POST&quot; rel=&quot;Tag&quot;&gt;_POST&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/nama_file&quot; rel=&quot;Tag&quot;&gt;nama_file&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/csharpcode&quot; rel=&quot;Tag&quot;&gt;csharpcode&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/ffffff&quot; rel=&quot;Tag&quot;&gt;ffffff&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/kwrd&quot; rel=&quot;Tag&quot;&gt;kwrd&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/preproc&quot; rel=&quot;Tag&quot;&gt;preproc&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/attr&quot; rel=&quot;Tag&quot;&gt;attr&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/lnum&quot; rel=&quot;Tag&quot;&gt;lnum&lt;/a&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/7485736214139599865/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/variable.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/7485736214139599865'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/7485736214139599865'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/variable.html' title='Variable'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-6517299299996217269</id><published>2011-04-15T16:00:00.000+07:00</published><updated>2011-04-15T16:06:10.269+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="visual basic"/><title type='text'>Visual Basic ??????????</title><content type='html'>&lt;div class=&quot;wlWriterHeaderFooter&quot; style=&quot;float:none; margin:0px; padding:4px 0px 4px 0px;&quot;&gt;&lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=http://programminghaha.blogspot.com/2011/04/visual-basic.html&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:80px&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;Visual Basic is one of object-oriented programming languages ​​(Object Oriented Programming / OOP) is very easy to use and learn. Visual Basic is produced by Microsoft Corporation which also produces the Windows operating system with windows kompetibelitas So good level.  &lt;br /&gt;Visual Basic compiler file applications will have:  &lt;br /&gt;1. Project Files (*. vbp) &lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-punch&quot; alt=&quot;Punch&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1IdxcTj6elUgb6R4X0nYLll2o58Tx5z5SlNTW08F1jhaV8nKX7r4vFF8GRA4nvF-GHjriOQY1WoC-UZsDHjd8MjrbS33-e-O-nTMr5OZWtl1dZ5kcd0GbGLkaK90fD4XlNwv9iNau8YE/?imgmax=800&quot; /&gt;  &lt;br /&gt;Project file is a file from the application that we build itself. In this project file usually consists of several other files.  &lt;br /&gt;2. The file interface / form (*. frm)&lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-rollingonthefloorlaughing&quot; alt=&quot;Rolling on the floor laughing&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZs6XXNgtniWVBlN1b9Agkdiz8w_nqgI666TgrTigU8DQS5SkZ-zLiaoLtc3QC0Hp0vfjl_RrO4D3Hc3emGPDBuXK23-8-yrgzhiS5kSYRtNEqJE-ruy85XD-Fg2j64aAmcdCItrlVxBs/?imgmax=800&quot; /&gt;  &lt;br /&gt;This file is the file that stores information about the form in an application form. In a regular project file consists of more than one form.  &lt;br /&gt;Design Time and Runtime  &lt;br /&gt;In visual programming, there are two times that show what we can do at that moment in our application.  &lt;br /&gt;1. Design Time&lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-greenwithenvy&quot; alt=&quot;Green with envy&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjhH6mFsA-wiNKAhEZwW9riugpRLZURTzIzGKnpzF6Q94WPTUn5XdVgVBbV4dBUXbhXM_N261T3XooTg0gukTbnkEnYaDz0_i7i90uWjlHYM7KXa3_2RSPPyGAZPFw92riq8BO3BhypCFE/?imgmax=800&quot; /&gt;  &lt;br /&gt;Design Time is the time when we are designing / building our application. Determining the shape of interface, type the program code, and all the activities of design / development do we do when the design-time.  &lt;br /&gt;2. Run Time&lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-whome&quot; alt=&quot;Who me?&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMBPCYX5Y0xT_TyCRiunr4aRDn143YbdKNJyu2hShvG-8CEH1oLiQMo_Ou-h9JrCKI7apWLpUrocayp93Hqp6AtP0pHgY-mAIUTH5R2Ihz_cCQps-CHq7HqPTcmSbnzbdOEQxmWwkJwTY/?imgmax=800&quot; /&gt;  &lt;br /&gt;We run or execution results of the design we have done is the Runtime. At this time we can not alter the program code.    &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Technorati Tags: &lt;a href=&quot;http://technorati.com/tags/Visual&quot; rel=&quot;tag&quot;&gt;Visual&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Basic&quot; rel=&quot;tag&quot;&gt;Basic&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/languages&quot; rel=&quot;tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Object&quot; rel=&quot;tag&quot;&gt;Object&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Microsoft&quot; rel=&quot;tag&quot;&gt;Microsoft&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Corporation&quot; rel=&quot;tag&quot;&gt;Corporation&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Windows&quot; rel=&quot;tag&quot;&gt;Windows&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/system&quot; rel=&quot;tag&quot;&gt;system&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Project&quot; rel=&quot;tag&quot;&gt;Project&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Files&quot; rel=&quot;tag&quot;&gt;Files&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/interface&quot; rel=&quot;tag&quot;&gt;interface&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/information&quot; rel=&quot;tag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Design&quot; rel=&quot;tag&quot;&gt;Design&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Time&quot; rel=&quot;tag&quot;&gt;Time&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/Runtime&quot; rel=&quot;tag&quot;&gt;Runtime&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/moment&quot; rel=&quot;tag&quot;&gt;moment&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/development&quot; rel=&quot;tag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/execution&quot; rel=&quot;tag&quot;&gt;execution&lt;/a&gt;    &lt;br /&gt;Windows Live Tags: &lt;a href=&quot;http://windows.live.com/connect/tag/Visual&quot; rel=&quot;clubhouseTag&quot;&gt;Visual&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Basic&quot; rel=&quot;clubhouseTag&quot;&gt;Basic&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/languages&quot; rel=&quot;clubhouseTag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Object&quot; rel=&quot;clubhouseTag&quot;&gt;Object&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Microsoft&quot; rel=&quot;clubhouseTag&quot;&gt;Microsoft&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Corporation&quot; rel=&quot;clubhouseTag&quot;&gt;Corporation&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Windows&quot; rel=&quot;clubhouseTag&quot;&gt;Windows&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/system&quot; rel=&quot;clubhouseTag&quot;&gt;system&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Project&quot; rel=&quot;clubhouseTag&quot;&gt;Project&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Files&quot; rel=&quot;clubhouseTag&quot;&gt;Files&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/interface&quot; rel=&quot;clubhouseTag&quot;&gt;interface&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/information&quot; rel=&quot;clubhouseTag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Design&quot; rel=&quot;clubhouseTag&quot;&gt;Design&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Time&quot; rel=&quot;clubhouseTag&quot;&gt;Time&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/Runtime&quot; rel=&quot;clubhouseTag&quot;&gt;Runtime&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/moment&quot; rel=&quot;clubhouseTag&quot;&gt;moment&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/development&quot; rel=&quot;clubhouseTag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://windows.live.com/connect/tag/execution&quot; rel=&quot;clubhouseTag&quot;&gt;execution&lt;/a&gt;    &lt;br /&gt;WordPress Tags: &lt;a href=&quot;http://wordpress.com/tag/Visual&quot; rel=&quot;Tag&quot;&gt;Visual&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Basic&quot; rel=&quot;Tag&quot;&gt;Basic&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/languages&quot; rel=&quot;Tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Object&quot; rel=&quot;Tag&quot;&gt;Object&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Microsoft&quot; rel=&quot;Tag&quot;&gt;Microsoft&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Corporation&quot; rel=&quot;Tag&quot;&gt;Corporation&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Windows&quot; rel=&quot;Tag&quot;&gt;Windows&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/system&quot; rel=&quot;Tag&quot;&gt;system&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Project&quot; rel=&quot;Tag&quot;&gt;Project&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Files&quot; rel=&quot;Tag&quot;&gt;Files&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/interface&quot; rel=&quot;Tag&quot;&gt;interface&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/information&quot; rel=&quot;Tag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Design&quot; rel=&quot;Tag&quot;&gt;Design&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Time&quot; rel=&quot;Tag&quot;&gt;Time&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/Runtime&quot; rel=&quot;Tag&quot;&gt;Runtime&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/moment&quot; rel=&quot;Tag&quot;&gt;moment&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/development&quot; rel=&quot;Tag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://wordpress.com/tag/execution&quot; rel=&quot;Tag&quot;&gt;execution&lt;/a&gt;    &lt;br /&gt;Blogger Labels: &lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Visual&quot; rel=&quot;Tag&quot;&gt;Visual&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Basic&quot; rel=&quot;Tag&quot;&gt;Basic&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/languages&quot; rel=&quot;Tag&quot;&gt;languages&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Object&quot; rel=&quot;Tag&quot;&gt;Object&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Microsoft&quot; rel=&quot;Tag&quot;&gt;Microsoft&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Corporation&quot; rel=&quot;Tag&quot;&gt;Corporation&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Windows&quot; rel=&quot;Tag&quot;&gt;Windows&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/system&quot; rel=&quot;Tag&quot;&gt;system&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Project&quot; rel=&quot;Tag&quot;&gt;Project&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Files&quot; rel=&quot;Tag&quot;&gt;Files&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/interface&quot; rel=&quot;Tag&quot;&gt;interface&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/information&quot; rel=&quot;Tag&quot;&gt;information&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Design&quot; rel=&quot;Tag&quot;&gt;Design&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Time&quot; rel=&quot;Tag&quot;&gt;Time&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/Runtime&quot; rel=&quot;Tag&quot;&gt;Runtime&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/moment&quot; rel=&quot;Tag&quot;&gt;moment&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/development&quot; rel=&quot;Tag&quot;&gt;development&lt;/a&gt;,&lt;a href=&quot;http://programming is easy.blogspot.com/search/label/execution&quot; rel=&quot;Tag&quot;&gt;execution&lt;/a&gt;&lt;/p&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/6517299299996217269/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/visual-basic.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/6517299299996217269'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/6517299299996217269'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/visual-basic.html' title='Visual Basic ??????????'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1IdxcTj6elUgb6R4X0nYLll2o58Tx5z5SlNTW08F1jhaV8nKX7r4vFF8GRA4nvF-GHjriOQY1WoC-UZsDHjd8MjrbS33-e-O-nTMr5OZWtl1dZ5kcd0GbGLkaK90fD4XlNwv9iNau8YE/s72-c?imgmax=800" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-3643494445350324343</id><published>2011-04-15T15:23:00.001+07:00</published><updated>2011-04-15T15:23:46.788+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Come to Know PHP</title><content type='html'>&lt;p&gt;Did you know that PHP &lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-surprisedsmile&quot; alt=&quot;Surprised smile&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgm80Jtc0_prUry7oIbSRpINm060cQ8EylbIQ_K_wchIjifQW8-UuR3OTVCxChhlW-hPhtOB-Z-Xn733ZwuN1ZPBaZoj_p0ocQ3GI2QaWRGnuRQ7AhsKkYTQYZNObNRggykAk-hcKDZmkI/?imgmax=800&quot; /&gt;    &lt;br /&gt;1. Is a recursive acronym of P HP: Hypertext Prepocessor.    &lt;br /&gt;2. First created by Rasmus Lerdorf in 1994.    &lt;br /&gt;3. Must be written in between the tags:&lt;/p&gt;  &lt;p&gt;a. &lt;font style=&quot;background-color: #ffff00&quot; color=&quot;#0000ff&quot;&gt;Style XLM     &lt;br /&gt;&amp;lt;?php      &lt;br /&gt;echo ”Style XML”      &lt;br /&gt;?&amp;gt;      &lt;br /&gt;&lt;/font&gt;b. &lt;font style=&quot;background-color: #00ff00&quot;&gt;&lt;font color=&quot;#9b00d3&quot;&gt;Short Style       &lt;br /&gt;&amp;lt;?        &lt;br /&gt;Echo”ShortStyle”;        &lt;br /&gt;?&amp;gt;&lt;/font&gt;      &lt;br /&gt;&lt;/font&gt;c. &lt;font style=&quot;background-color: #ffff00&quot;&gt;&lt;font color=&quot;#0000ff&quot;&gt;Style SCRIPT       &lt;br /&gt;&amp;lt;script language =’php’&amp;gt;        &lt;br /&gt;echo ”Style JavaScript”;        &lt;br /&gt;&amp;lt;/script&amp;gt;&lt;/font&gt;      &lt;br /&gt;&lt;/font&gt;d. &lt;font style=&quot;background-color: #00ff00&quot; color=&quot;#9b00d3&quot;&gt;Style ASP     &lt;br /&gt;&amp;lt;%      &lt;br /&gt;echo ”Style ASP”      &lt;br /&gt;%&amp;gt;&lt;/font&gt;&lt;/p&gt;  &lt;a name=&#39;more&#39;&gt;&lt;/a&gt;  &lt;p&gt;4. Every single statement (command) usually end with a semicolon (;)   &lt;br /&gt;5. Case sensitive to the name created by the user identifier (a variable, constants, functions, etc.), but NOT case sensitive to the built-in identifier of PHP. So:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;$haha ≠ $Haha ≠ $HAHA&lt;/li&gt;    &lt;li&gt;calculateArea() ≠ CalculateArea()&lt;/li&gt;    &lt;li&gt;echo = ECHO&lt;/li&gt;    &lt;li&gt;while = WHILE&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;6. Easy to learn&lt;/p&gt;  &lt;p&gt;Say Hello to the PHP &lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-sarcasticsmile&quot; alt=&quot;Sarcastic smile&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwyckitCWKDn2UbhhpIPDPWdvS4_sVYWM-my2AdwuvSkk0Q1LGdoIxi-AwBJam2hZU9ECSQnDvMvN8QgnH1YLkW5oKpwvsq_LXkECJT1zbqrgi-IZhHlw8NS8mw1KHKPXjwARvoY8sjj8/?imgmax=800&quot; /&gt;    &lt;br /&gt;1. Enter this command in notepad or dreamweaver.    &lt;br /&gt;&lt;font style=&quot;background-color: #a5a5a5&quot; color=&quot;#0000ff&quot;&gt;&amp;lt;? php     &lt;br /&gt;echo &amp;quot;Hello, my name is PHP&amp;quot;;      &lt;br /&gt;?&amp;gt;&lt;/font&gt;    &lt;br /&gt;2. Save with the name DocumentRoot hello.php on your computer.    &lt;br /&gt;3. Open the browser and then typing http://localhost/hello.php    &lt;br /&gt;4. See the results in the browser.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;div style=&quot;padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px&quot; id=&quot;scid:0767317B-992E-4b12-91E0-4F059A8CECA8:1ef4c685-4143-4c37-b81a-f3d8ef265971&quot; class=&quot;wlWriterEditableSmartContent&quot;&gt;Technorati Tags: &lt;a href=&quot;http://technorati.com/tags/php+basic&quot; rel=&quot;tag&quot;&gt;php basic&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/php+procedure&quot; rel=&quot;tag&quot;&gt;php procedure&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/php&quot; rel=&quot;tag&quot;&gt;php&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/modul&quot; rel=&quot;tag&quot;&gt;modul&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/php+echo&quot; rel=&quot;tag&quot;&gt;php echo&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/php+hello&quot; rel=&quot;tag&quot;&gt;php hello&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/php+script&quot; rel=&quot;tag&quot;&gt;php script&lt;/a&gt;&lt;/div&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/3643494445350324343/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/come-to-know-php.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/3643494445350324343'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/3643494445350324343'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/come-to-know-php.html' title='Come to Know PHP'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgm80Jtc0_prUry7oIbSRpINm060cQ8EylbIQ_K_wchIjifQW8-UuR3OTVCxChhlW-hPhtOB-Z-Xn733ZwuN1ZPBaZoj_p0ocQ3GI2QaWRGnuRQ7AhsKkYTQYZNObNRggykAk-hcKDZmkI/s72-c?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-2740548597202493328</id><published>2011-04-15T15:02:00.000+07:00</published><updated>2011-04-15T15:04:54.519+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>PHP Basic Structure</title><content type='html'>&lt;p&gt;PHP Definition &lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-winkingsmile&quot; alt=&quot;Winking smile&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbbJMNeraa10gRhr3ojGbrhVeHBwh0nHpf-GS4UCmxxz8KU5ePWGqZTsbwYM9KyRE7EweRVm9Nk_jAL2s1TUSdo6eRQwjPswpIpsQmKsiSoIZpVXPYp-Fw79oPLNFM-WlvPfz7H4RKZzw/?imgmax=800&quot; /&gt;&lt;/p&gt;  &lt;p&gt;According to official documents of PHP, PHP stands for PHP Hypertext Preprocessor. It is a form of language scripts that are placed in the server and processed on the server. The results are sent to the client, where the user uses browser. PHP is a server-side scripting language that integrates with HTML for create dynamic web pages. The purpose of the server-side scripting is the syntax and the commands that we give will be entirely run on the server but included in regular HTML documents. PHP is free to use. You do not have to pay anything for Using this software, aka free. You can download it via the site http://www.php.net. PHP is available in the form of binary code or source code complete.&lt;/p&gt;  &lt;p&gt;PHP Style &lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-openmouthedsmile&quot; alt=&quot;Open-mouthed smile&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZgXwErqeBUwmfe40gKZupBJwQcn_J-mOf_DmzIWQfxumRMaP-bPG8DG2_eKz8GN8ahyn3P2lpVjbDn8xDH0eshIWJZ9Uel_XnY_Lha8FvCfP-OKWtrNEz5qIfLVWUEgmZZZFOS3SmPms/?imgmax=800&quot; /&gt;&lt;/p&gt;  &lt;p&gt;PHP gives us flexibility when writing programs, with notes still refers to the conditions set. Please note that by the time PHP parse the file, the tag will be read to meet the special tags which tell for menerjemahkanya as PHP code. If the tag is found, then parser to execute the program code until the end on the closing tag. This also applies to the PHP code is embedded in HTML documents, which the parser will find the tags to be found. The rest are outside the tags will be considered not a PHP code, so the parser is also no need to process it. There are four ways to write a tag that identifies the PHP program.&lt;/p&gt;  &lt;div style=&quot;padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px&quot; id=&quot;scid:0767317B-992E-4b12-91E0-4F059A8CECA8:4899b593-a443-4bd8-b3f3-533615392b3d&quot; class=&quot;wlWriterEditableSmartContent&quot;&gt;Technorati Tags: &lt;a href=&quot;http://technorati.com/tags/php&quot; rel=&quot;tag&quot;&gt;php&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/php+definition&quot; rel=&quot;tag&quot;&gt;php definition&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/php+style&quot; rel=&quot;tag&quot;&gt;php style&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/php+definisi&quot; rel=&quot;tag&quot;&gt;php definisi&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/php+structure&quot; rel=&quot;tag&quot;&gt;php structure&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/php+basic&quot; rel=&quot;tag&quot;&gt;php basic&lt;/a&gt;&lt;/div&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/2740548597202493328/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/php-basic-structure.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/2740548597202493328'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/2740548597202493328'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/php-basic-structure.html' title='PHP Basic Structure'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbbJMNeraa10gRhr3ojGbrhVeHBwh0nHpf-GS4UCmxxz8KU5ePWGqZTsbwYM9KyRE7EweRVm9Nk_jAL2s1TUSdo6eRQwjPswpIpsQmKsiSoIZpVXPYp-Fw79oPLNFM-WlvPfz7H4RKZzw/s72-c?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-5663402325629682863</id><published>2011-04-15T14:43:00.000+07:00</published><updated>2011-04-15T14:52:25.307+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Introduction to Web Server and Server Side Scripting</title><content type='html'>&lt;p&gt;1.1 Web Server &lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-openmouthedsmile&quot; alt=&quot;Open-mouthed smile&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjb6_LizyfhEsE5-LQAYsQ9mVL3HSgqOQu81GmaTtGBrLQz-OS_IAgjpMzl9xbs3ZOPUZnvPD_z2ocruIA6ZpiM9joZiduNtaZIl-JQKTBhIBpLGKcePA2KnXuUpeybWaarwOycO40bupw/?imgmax=800&quot; /&gt;     &lt;br /&gt;Web Server is a server software that functions in received a request (request) in the form of web pages via HTTP or HTTPS from clients, known as a web browser and sent back (response) results in the form of web pages are generally in the form of an HTML document. &lt;/p&gt;  &lt;p&gt;Some of the widely used Web Server on the Internet, among others:    &lt;br /&gt;1. Apache Web Server (http://www.apache.org)     &lt;br /&gt;2. Internet Information Services, IIS (http://www.microsoft.com/iis)     &lt;br /&gt;3. Xitami Web Server (http://www.xitami.com)     &lt;br /&gt;4. Sun Java System Web Server (Http://www.sun.com/software/products/web_srvr/home_web_srvr.xml)     &lt;br /&gt;1.2 Server Side Scripting &lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-openmouthedsmile&quot; alt=&quot;Open-mouthed smile&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjb6_LizyfhEsE5-LQAYsQ9mVL3HSgqOQu81GmaTtGBrLQz-OS_IAgjpMzl9xbs3ZOPUZnvPD_z2ocruIA6ZpiM9joZiduNtaZIl-JQKTBhIBpLGKcePA2KnXuUpeybWaarwOycO40bupw/?imgmax=800&quot; /&gt;     &lt;br /&gt;Server Side Scripting is a scripting or programming technology web in which the script (program) is compiled or translated on the server. With server side scripting, enabling it to generate dynamic web pages.     &lt;br /&gt;Some examples of Server Side Scripting (Programming):     &lt;br /&gt;1. ASP (Active Server Pages) and ASP.NET     &lt;br /&gt;2. ColdFusion (http://www.macromedia.com/software/coldfusion)     &lt;br /&gt;3. Java Server Pages (http://java.sun.com/products/jsp/)     &lt;br /&gt;4. Perl (http://www.perl.org)     &lt;br /&gt;5. Phyton (http://www.python.org)     &lt;br /&gt;6. PHP (http://www.php.net)     &lt;br /&gt;Advanced Web Programming     &lt;br /&gt;PHP Privileges     &lt;br /&gt;1. Fast     &lt;br /&gt;2. Free     &lt;br /&gt;3. Easy to learn     &lt;br /&gt;4. Multi-platform     &lt;br /&gt;5. Support technical-support     &lt;br /&gt;6. Many of the PHP community     &lt;br /&gt;7. Safe     &lt;br /&gt;1.3 Installing Apache, PHP and MySQL with XAMPP &lt;img style=&quot;border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none&quot; class=&quot;wlEmoticon wlEmoticon-openmouthedsmile&quot; alt=&quot;Open-mouthed smile&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjb6_LizyfhEsE5-LQAYsQ9mVL3HSgqOQu81GmaTtGBrLQz-OS_IAgjpMzl9xbs3ZOPUZnvPD_z2ocruIA6ZpiM9joZiduNtaZIl-JQKTBhIBpLGKcePA2KnXuUpeybWaarwOycO40bupw/?imgmax=800&quot; /&gt;     &lt;br /&gt;The process of installing Apache, PHP and MySQL is often a constraint, especially     &lt;br /&gt;for beginners just learning web programming with PHP. This caused     &lt;br /&gt;because the software must be installed and configured one by one. For those not yet     &lt;br /&gt;understand correctly, would often have difficulty, especially for us who study     &lt;br /&gt;independent.     &lt;br /&gt;But do not be discouraged, many available applications packages     &lt;br /&gt;The third brings together the software (Apache, PHP and MySQL) into a single installer.     &lt;br /&gt;The installation can be done easily and quickly, just next, next,     &lt;br /&gt;and finish.     &lt;br /&gt;Some application packages include:     &lt;br /&gt;1. XAMPP (Windows version) and lampp (Linux version) which can be downloaded at     &lt;br /&gt;http://apachefriends.org.     &lt;br /&gt;2. WAMP Server.     &lt;br /&gt;3. AppServ.     &lt;br /&gt;4. PHPTriad.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;div style=&quot;padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px&quot; id=&quot;scid:0767317B-992E-4b12-91E0-4F059A8CECA8:4136b714-9585-4ffb-99ec-5522651329a4&quot; class=&quot;wlWriterEditableSmartContent&quot;&gt;Technorati Tags: &lt;a href=&quot;http://technorati.com/tags/php&quot; rel=&quot;tag&quot;&gt;php&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/web+server&quot; rel=&quot;tag&quot;&gt;web server&lt;/a&gt;,&lt;a href=&quot;http://technorati.com/tags/server&quot; rel=&quot;tag&quot;&gt;server&lt;/a&gt;&lt;/div&gt;  &lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/5663402325629682863/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/introduction-to-web-server-and-server.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/5663402325629682863'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/5663402325629682863'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/introduction-to-web-server-and-server.html' title='Introduction to Web Server and Server Side Scripting'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjb6_LizyfhEsE5-LQAYsQ9mVL3HSgqOQu81GmaTtGBrLQz-OS_IAgjpMzl9xbs3ZOPUZnvPD_z2ocruIA6ZpiM9joZiduNtaZIl-JQKTBhIBpLGKcePA2KnXuUpeybWaarwOycO40bupw/s72-c?imgmax=800" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-404873353761773858</id><published>2011-04-13T22:29:00.001+07:00</published><updated>2011-04-14T14:38:22.231+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="visual basic"/><title type='text'>Creating applications in visual basic text preview</title><content type='html'>&lt;div class=&quot;almost_half_cell&quot; id=&quot;gt-res-content&quot; style=&quot;padding-right: 16px; padding-top: 9px;&quot;&gt;&lt;div dir=&quot;ltr&quot; style=&quot;zoom: 1;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; font-family: arial, sans-serif; font-size: 13px; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEimdDpsDR2UuEIq225Z1gSPxJs7_ixepCAqFLJKJn27-uVGOmSPvXa7rUaCKO-N_jqKbTZ1VD1IhrwzzwylLlog35PvSvr8eoqGd0Hi_15p6hlIc2sXCnyNvVB-Dw5iwDw5ovQB2WriCYo/s1600/preview000.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em; text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: black;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class=&quot;&quot; id=&quot;result_box&quot; lang=&quot;en&quot; style=&quot;color: black; display: block;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEimdDpsDR2UuEIq225Z1gSPxJs7_ixepCAqFLJKJn27-uVGOmSPvXa7rUaCKO-N_jqKbTZ1VD1IhrwzzwylLlog35PvSvr8eoqGd0Hi_15p6hlIc2sXCnyNvVB-Dw5iwDw5ovQB2WriCYo/s1600/preview000.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; font-family: arial, sans-serif; font-size: 16px; margin-bottom: 1em; margin-left: 1em; text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: black;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEimdDpsDR2UuEIq225Z1gSPxJs7_ixepCAqFLJKJn27-uVGOmSPvXa7rUaCKO-N_jqKbTZ1VD1IhrwzzwylLlog35PvSvr8eoqGd0Hi_15p6hlIc2sXCnyNvVB-Dw5iwDw5ovQB2WriCYo/s1600/preview000.jpg&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;&quot; id=&quot;result_box&quot; lang=&quot;en&quot; style=&quot;color: black; display: block;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Creating&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;applications&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;in&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;visual&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;basic&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;text&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;preview&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: arial, sans-serif; font-size: 16px; text-align: left;&quot;&gt;&lt;span class=&quot;&quot; id=&quot;result_box&quot; lang=&quot;en&quot; style=&quot;color: black; display: block;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;&quot; id=&quot;result_box&quot; lang=&quot;en&quot; style=&quot;color: black; display: block;&quot;&gt; &lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;the steps&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;are&lt;/span&gt;&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;1&lt;/span&gt;&lt;span title=&quot;Klik untuk terjemahan alternatif&quot;&gt;.&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;open&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;microsoft&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;visual&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;basic&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;yours&lt;/span&gt;&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;2&lt;/span&gt;&lt;span title=&quot;Klik untuk terjemahan alternatif&quot;&gt;.&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;create a&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;form&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;like&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;this&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style=&quot;font-family: arial, sans-serif; font-size: 16px; text-align: left;&quot;&gt;&amp;nbsp;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjsjcHTssAiZkOtVcepYZR39is7K67Rq7Fh3lmewV5PPXcZr7rT2pBRW9TqGXWpHhpnV0vh_F09dhWua2gsZ4SuN0vijhtiRKBTXIxgORy-byNAC6UR_ow6J6O47BB9qgaD1NP8aiDeryg/s1600/preview001.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;241&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjsjcHTssAiZkOtVcepYZR39is7K67Rq7Fh3lmewV5PPXcZr7rT2pBRW9TqGXWpHhpnV0vh_F09dhWua2gsZ4SuN0vijhtiRKBTXIxgORy-byNAC6UR_ow6J6O47BB9qgaD1NP8aiDeryg/s320/preview001.jpg&quot; style=&quot;cursor: move;&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;3&lt;/span&gt;&lt;span title=&quot;Klik untuk terjemahan alternatif&quot;&gt;.&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;criteria&lt;/span&gt;&lt;/div&gt;&lt;/span&gt; &lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoTableGrid&quot; style=&quot;border-bottom-style: none; border-collapse: collapse; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-family: arial, sans-serif; font-size: 16px; margin-left: 5.4pt; text-align: left;&quot;&gt;&lt;tbody&gt;
&lt;tr style=&quot;height: 7.75pt; mso-yfti-firstrow: yes; mso-yfti-irow: 0;&quot;&gt;   &lt;td style=&quot;background: #E0E0E0; border: solid windowtext 1.0pt; height: 7.75pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;bottom&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: 0in; text-align: center;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Object&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;background: #E0E0E0; border-left: none; border: solid windowtext 1.0pt; height: 7.75pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;bottom&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: 0in; text-align: center;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Property&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;background: #E0E0E0; border-left: none; border: solid windowtext 1.0pt; height: 7.75pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 193.5pt;&quot; valign=&quot;bottom&quot; width=&quot;258&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: 0in; text-align: center;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Nilai&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td rowspan=&quot;2&quot; style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Label1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Name&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 193.5pt;&quot; valign=&quot;top&quot; width=&quot;258&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Label1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 193.5pt;&quot; valign=&quot;top&quot; width=&quot;258&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Enter   phrase below&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td rowspan=&quot;2&quot; style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Name&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 193.5pt;&quot; valign=&quot;top&quot; width=&quot;258&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;text&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 193.5pt;&quot; valign=&quot;top&quot; width=&quot;258&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;(Delete)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td rowspan=&quot;2&quot; style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Command1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Name&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 193.5pt;&quot; valign=&quot;top&quot; width=&quot;258&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Command1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 193.5pt;&quot; valign=&quot;top&quot; width=&quot;258&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Preview&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td rowspan=&quot;2&quot; style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Label2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Times New Roman&#39;, serif; font-size: 10pt; line-height: 150%;&quot;&gt;Alignment&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 193.5pt;&quot; valign=&quot;top&quot; width=&quot;258&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;center&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Times New Roman&#39;, serif; font-size: 10pt; line-height: 150%;&quot;&gt;&amp;nbsp;Background&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 193.5pt;&quot; valign=&quot;top&quot; width=&quot;258&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Times New Roman&#39;, serif; font-size: 10pt; line-height: 150%;&quot;&gt;&amp;amp;H00FFFFFF&amp;amp;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Command2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 193.5pt;&quot; valign=&quot;top&quot; width=&quot;258&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; margin-bottom: .0001pt; margin-bottom: 0in;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;exit&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Description of&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;program&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;:&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;When the&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;event&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;button&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;is clicked&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;the&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;contents&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Label2&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;property&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;will&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;take&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;the&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;contents of&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Text1&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;property&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;3&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Log&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;into&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Code&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;View&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;,&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;the following&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;contents of&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;the program&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Private&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Sub&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Command1_Click&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps atn&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;(&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Label2.Caption&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;=&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Text1.Text&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;End Sub&lt;/div&gt;&lt;/span&gt; &lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;To&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;exit&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;button&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Private&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Sub&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Command2_Click&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps atn&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;(&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;End&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;End Sub&lt;/div&gt;&lt;/span&gt; &lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;run the&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;program&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;and&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;completed&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt; &lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;Programming&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;is&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;easy&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif; font-size: 13px;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;g-section&quot; id=&quot;gt-res-tools&quot; style=&quot;display: inline-block; margin-top: 16px; vertical-align: top; width: 603px; zoom: 1;&quot;&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;thank you for visiting my blog&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/404873353761773858/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/creating-applications-in-visual-basic.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/404873353761773858'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/404873353761773858'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/creating-applications-in-visual-basic.html' title='Creating applications in visual basic text preview'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEimdDpsDR2UuEIq225Z1gSPxJs7_ixepCAqFLJKJn27-uVGOmSPvXa7rUaCKO-N_jqKbTZ1VD1IhrwzzwylLlog35PvSvr8eoqGd0Hi_15p6hlIc2sXCnyNvVB-Dw5iwDw5ovQB2WriCYo/s72-c/preview000.jpg" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-5575744591791008775</id><published>2011-04-13T22:23:00.004+07:00</published><updated>2011-04-14T14:36:46.794+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="visual basic"/><title type='text'>VARIABLE, VAL and constants in visual basic</title><content type='html'>&lt;div class=&quot;MsoNormal&quot;&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif;&quot;&gt;VARIABLE,&amp;nbsp;VAL&amp;nbsp;and constants&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif;&quot;&gt;VARIABLE&lt;/span&gt;&lt;/div&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;The variable&amp;nbsp;is&amp;nbsp;a&amp;nbsp;place&amp;nbsp;in&amp;nbsp;memory&amp;nbsp;that is named&amp;nbsp;(as an&amp;nbsp;identifier)&amp;nbsp;and&amp;nbsp;allocated&amp;nbsp;to accommodate&amp;nbsp;the data.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;Syntax:&amp;nbsp;As&amp;nbsp;Type&amp;nbsp;Dim&amp;nbsp;name of&amp;nbsp;the variable&amp;nbsp;data&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;Example:&amp;nbsp;Dim&amp;nbsp;a&amp;nbsp;As&amp;nbsp;Integer&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;Dim&amp;nbsp;name&amp;nbsp;As&amp;nbsp;String&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;Naming&amp;nbsp;rules&amp;nbsp;of variables in&amp;nbsp;Visual&amp;nbsp;Basic&amp;nbsp;is:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;1.&amp;nbsp;No&amp;nbsp;more&amp;nbsp;than&amp;nbsp;40&amp;nbsp;characters&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;2.&amp;nbsp;Consisting&amp;nbsp;of&amp;nbsp;letters,&amp;nbsp;numbers&amp;nbsp;and&amp;nbsp;underscore&amp;nbsp;(_)&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;3.&amp;nbsp;The first character&amp;nbsp;must be&amp;nbsp;a&amp;nbsp;letter&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;4.&amp;nbsp;May&amp;nbsp;not&amp;nbsp;use&amp;nbsp;words&amp;nbsp;that&amp;nbsp;are defined&amp;nbsp;by&amp;nbsp;visual&amp;nbsp;basic&amp;nbsp;(reserved&amp;nbsp;word)&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;How to&amp;nbsp;put&amp;nbsp;variable&amp;nbsp;to the source code:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;a)&amp;nbsp;In&amp;nbsp;General&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;If the&amp;nbsp;variable&amp;nbsp;is placed&amp;nbsp;on&amp;nbsp;the General&amp;nbsp;then&amp;nbsp;these variables&amp;nbsp;can&amp;nbsp;be read&amp;nbsp;on&amp;nbsp;eachprocedure&amp;nbsp;in&amp;nbsp;a&amp;nbsp;Form.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;b)&amp;nbsp;In&amp;nbsp;Procedure&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;If&amp;nbsp;the variable&amp;nbsp;is placed&amp;nbsp;on the&amp;nbsp;procedure&amp;nbsp;in each&amp;nbsp;object,&amp;nbsp;then&amp;nbsp;the variable&amp;nbsp;can&amp;nbsp;only&amp;nbsp;be read&amp;nbsp;on the&amp;nbsp;procedure&amp;nbsp;alone&amp;nbsp;(no&amp;nbsp;other&amp;nbsp;procedure&amp;nbsp;can&amp;nbsp;be read&amp;nbsp;at&amp;nbsp;even&amp;nbsp;the&amp;nbsp;one&amp;nbsp;from).&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;c)&amp;nbsp;In&amp;nbsp;Module&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;If the&amp;nbsp;variable&amp;nbsp;is placed&amp;nbsp;in&amp;nbsp;Module&amp;nbsp;then&amp;nbsp;these variables&amp;nbsp;can&amp;nbsp;be read&amp;nbsp;or&amp;nbsp;be called&amp;nbsp;onevery&amp;nbsp;procedure&amp;nbsp;in a&amp;nbsp;single&amp;nbsp;project.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;VAL&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;Val&amp;nbsp;or&amp;nbsp;value&amp;nbsp;is used&amp;nbsp;if&amp;nbsp;we&amp;nbsp;do not&amp;nbsp;declare a&amp;nbsp;variable,&amp;nbsp;or&amp;nbsp;to&amp;nbsp;convert&amp;nbsp;or&amp;nbsp;change&amp;nbsp;the&amp;nbsp;datatype&amp;nbsp;string&amp;nbsp;to&amp;nbsp;type&amp;nbsp;numeric&amp;nbsp;data.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;Constant&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;Constants&amp;nbsp;together&amp;nbsp;with the&amp;nbsp;variables&amp;nbsp;but&amp;nbsp;constants&amp;nbsp;have&amp;nbsp;fixed values&amp;nbsp;​​or&amp;nbsp;characterconstant.&amp;nbsp;Declare the&amp;nbsp;constants&amp;nbsp;in&amp;nbsp;Visual&amp;nbsp;Basic&amp;nbsp;using the&amp;nbsp;Const&amp;nbsp;[a&amp;nbsp;constant]&amp;nbsp;As&amp;nbsp;[data type&amp;nbsp;of&amp;nbsp;the constant]&amp;nbsp;=&amp;nbsp;[value&amp;nbsp;constants].&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;Example of&amp;nbsp;declaring&amp;nbsp;a constant:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;Const&amp;nbsp;Phi&amp;nbsp;As&amp;nbsp;Integer&amp;nbsp;=&amp;nbsp;3:14&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span lang=&quot;EN-GB&quot; style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;completed&lt;/span&gt;&lt;span style=&quot;color: #888888; font-family: Arial, sans-serif; font-size: 10pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;thank you for visiting my blog&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/5575744591791008775/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/variable-val-and-constants-in-visual.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/5575744591791008775'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/5575744591791008775'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/variable-val-and-constants-in-visual.html' title='VARIABLE, VAL and constants in visual basic'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-6223588234419544970</id><published>2011-04-13T22:21:00.001+07:00</published><updated>2011-04-14T14:37:18.861+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="visual basic"/><title type='text'>Creating program summing Without Variable declaration - visual basic</title><content type='html'>&lt;div class=&quot;MsoNormal&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;Creating&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;program&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;summing&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;Without&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;Variable&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;declaration&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small; line-height: normal;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEghO_5hdfkmzO6guZlarGED-GCwcHhsPXvZMol5IeJUTkSLHWbbGYQCrRdO7BImF4kH7oJTqkoYA6N6G7PA8uV7CVtb1fwMpTVdOelQwx1WhvCEhv4h826q163GJjHSJNSPHVwkALLnB7c/s1600/sum002.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEghO_5hdfkmzO6guZlarGED-GCwcHhsPXvZMol5IeJUTkSLHWbbGYQCrRdO7BImF4kH7oJTqkoYA6N6G7PA8uV7CVtb1fwMpTVdOelQwx1WhvCEhv4h826q163GJjHSJNSPHVwkALLnB7c/s320/sum002.jpg&quot; style=&quot;cursor: move;&quot; width=&quot;313&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;First&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;we&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;make&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;like&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;this&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 15px; line-height: 17px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small; line-height: normal;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiM5fcs0TPH6wpZ7AGNvd1Ex7RLWBsFxerTho9UxExfyLOI9dDS5dAUauZ3dR624Rquk19QvTgkVByIfROyzxTtuASPM0Qm14uLbZ1a8Gn_c1Tn8x7HRk7byhEN5j6sD0whMTJ8d5C9N5k/s1600/sum000.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;293&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiM5fcs0TPH6wpZ7AGNvd1Ex7RLWBsFxerTho9UxExfyLOI9dDS5dAUauZ3dR624Rquk19QvTgkVByIfROyzxTtuASPM0Qm14uLbZ1a8Gn_c1Tn8x7HRk7byhEN5j6sD0whMTJ8d5C9N5k/s320/sum000.jpg&quot; style=&quot;cursor: move;&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;color: black;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;Then&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;we&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;change&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;to be like&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;this&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 15px; line-height: 17px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: small; line-height: normal;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZUPOQXYPKO91kcO2Fd5NzP-hQMUyoVFVKyf3wAtPYfboXU2ft4ojMKuXgjcGJgfXAFnWVxLzYlTO77r_nWTtlFU6URKBpoTVq1w0FnzQwdQ1hI3FyZc13R4oDd-kpOZjA-kqGW8Vvou8/s1600/sum001.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZUPOQXYPKO91kcO2Fd5NzP-hQMUyoVFVKyf3wAtPYfboXU2ft4ojMKuXgjcGJgfXAFnWVxLzYlTO77r_nWTtlFU6URKBpoTVq1w0FnzQwdQ1hI3FyZc13R4oDd-kpOZjA-kqGW8Vvou8/s320/sum001.jpg&quot; style=&quot;cursor: move;&quot; width=&quot;306&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;color: black;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;Set&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;His estate&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;:&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;
&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;border-bottom-style: none; border-collapse: collapse; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; margin-left: 5.4pt; text-align: left;&quot;&gt;&lt;tbody&gt;
&lt;tr style=&quot;height: 7.75pt; mso-yfti-firstrow: yes; mso-yfti-irow: 0;&quot;&gt;   &lt;td style=&quot;background: #E0E0E0; border: solid windowtext 1.0pt; height: 7.75pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;bottom&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-align: center;&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif;&quot;&gt;Object&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;background: #E0E0E0; border-left: none; border: solid windowtext 1.0pt; height: 7.75pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;bottom&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-align: center;&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif;&quot;&gt;Property&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;background: #E0E0E0; border-left: none; border: solid windowtext 1.0pt; height: 7.75pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;bottom&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-align: center;&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif;&quot;&gt;Nilai&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr style=&quot;mso-yfti-irow: 1;&quot;&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Label1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;x&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr style=&quot;height: 14.35pt; mso-yfti-irow: 2;&quot;&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 14.35pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Label2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 14.35pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 14.35pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;y&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr style=&quot;mso-yfti-irow: 3;&quot;&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Label3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;result&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr style=&quot;mso-yfti-irow: 4;&quot;&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Label4&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Summation program&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr style=&quot;mso-yfti-irow: 5;&quot;&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;(delete)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr style=&quot;mso-yfti-irow: 6;&quot;&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;(delete)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr style=&quot;mso-yfti-irow: 7;&quot;&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;(delete)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr style=&quot;mso-yfti-irow: 8;&quot;&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Command1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Sum&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr style=&quot;mso-yfti-irow: 9; mso-yfti-lastrow: yes;&quot;&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Command2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;exit&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;Program&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;Listings&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 15px; line-height: 17px;&quot;&gt;Exit&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small; line-height: normal;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;Private Sub&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;Command2_Click&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;End&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;End Sub&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;Sum&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small; line-height: normal;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;Private&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;Sub&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;Command1_Click&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small; line-height: normal;&quot;&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;Text3.Text&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;Val&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;Text1.Text)&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;Val&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;Text2.Text)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt; &lt;span class=&quot;hps&quot; style=&quot;font-size: 11pt; line-height: 115%;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;End Sub&lt;/div&gt;&lt;/span&gt; &lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 15px; line-height: 17px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif; font-size: 16px; line-height: normal;&quot;&gt;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;This&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;is very&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;easy&lt;/span&gt;&lt;span class=&quot;&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;,&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;you can&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;develop it&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;again&lt;/span&gt;&lt;span title=&quot;Klik untuk terjemahan alternatif&quot;&gt;,&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;because&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;this&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;is only&lt;/span&gt;&amp;nbsp;&lt;span class=&quot;hps&quot; title=&quot;Klik untuk terjemahan alternatif&quot;&gt;authorized&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;thank you for visiting my blog&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/6223588234419544970/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/creating-program-summing-without.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/6223588234419544970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/6223588234419544970'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/creating-program-summing-without.html' title='Creating program summing Without Variable declaration - visual basic'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEghO_5hdfkmzO6guZlarGED-GCwcHhsPXvZMol5IeJUTkSLHWbbGYQCrRdO7BImF4kH7oJTqkoYA6N6G7PA8uV7CVtb1fwMpTVdOelQwx1WhvCEhv4h826q163GJjHSJNSPHVwkALLnB7c/s72-c/sum002.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8599048919554551230.post-4460311222849284766</id><published>2011-04-13T22:12:00.001+07:00</published><updated>2011-04-13T22:15:03.600+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="visual basic"/><title type='text'>Creating a program with a variable sum - visual basic</title><content type='html'>&lt;b&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;Creating a&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;program&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;with a&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;variable&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;sum&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;First&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;we&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;make&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;like&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;this&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8-2vSs4w3__nf6MN9MK72uvr00ot58loA8PdFI45kN643-vEKIvtqOwDBAhcYU5kjnMZiy-yKacqyrb7aCjqT_-qzJ4dq_dIb5RVZBnA544G6Fo7sVfdtoV_2erSCvOxWWARG57qhhU8/s1600/sum000.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;b&gt;&lt;img border=&quot;0&quot; height=&quot;293&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8-2vSs4w3__nf6MN9MK72uvr00ot58loA8PdFI45kN643-vEKIvtqOwDBAhcYU5kjnMZiy-yKacqyrb7aCjqT_-qzJ4dq_dIb5RVZBnA544G6Fo7sVfdtoV_2erSCvOxWWARG57qhhU8/s320/sum000.jpg&quot; width=&quot;320&quot; /&gt;&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;b&gt;&lt;span class=&quot;hps&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;b&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;Then&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;we&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;change&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;to be like&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;this&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQIFwitRe8xIMzjd4GX5204YFYmA-LlKCeIGDQmVktTJM5auT-o6p8tb6YO7bvzeliVHkZp0SlI3rxrSBTwtskpCj5N8TZlNsa22KybuZm2-4L_a89I1zH_X9nB5pHBmodzKM5nLIUGbY/s1600/sum001.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;b&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQIFwitRe8xIMzjd4GX5204YFYmA-LlKCeIGDQmVktTJM5auT-o6p8tb6YO7bvzeliVHkZp0SlI3rxrSBTwtskpCj5N8TZlNsa22KybuZm2-4L_a89I1zH_X9nB5pHBmodzKM5nLIUGbY/s320/sum001.jpg&quot; width=&quot;306&quot; /&gt;&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;b&gt;&lt;span class=&quot;hps&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;Set&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;His estate&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;:&lt;/span&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;border-collapse: collapse; border: none; margin-left: 5.4pt; mso-border-alt: solid windowtext .5pt; mso-border-insideh: .5pt solid windowtext; mso-border-insidev: .5pt solid windowtext; mso-padding-alt: 0in 5.4pt 0in 5.4pt; mso-yfti-tbllook: 480;&quot;&gt;&lt;tbody&gt;
&lt;tr style=&quot;height: 7.75pt; mso-yfti-firstrow: yes; mso-yfti-irow: 0;&quot;&gt;   &lt;td style=&quot;background: #E0E0E0; border: solid windowtext 1.0pt; height: 7.75pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;bottom&quot; width=&quot;132&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif;&quot;&gt;Object&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;background: #E0E0E0; border-left: none; border: solid windowtext 1.0pt; height: 7.75pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;bottom&quot; width=&quot;180&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif;&quot;&gt;Property&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;background: #E0E0E0; border-left: none; border: solid windowtext 1.0pt; height: 7.75pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;bottom&quot; width=&quot;204&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;line-height: 150%; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif;&quot;&gt;Nilai&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Label1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;x&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr style=&quot;height: 14.35pt; mso-yfti-irow: 2;&quot;&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 14.35pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Label2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 14.35pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 14.35pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;y&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Label3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;result&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Label4&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Summation program&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;(delete)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;(delete)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Text&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;(delete)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Command1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Sum&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 99.0pt;&quot; valign=&quot;top&quot; width=&quot;132&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Command2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 135.0pt;&quot; valign=&quot;top&quot; width=&quot;180&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;Caption&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 153.0pt;&quot; valign=&quot;top&quot; width=&quot;204&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 150%;&quot;&gt;&lt;span style=&quot;font-family: &#39;Arial Narrow&#39;, sans-serif; font-size: 10pt; line-height: 150%;&quot;&gt;exit&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;b&gt; &lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;Program&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;Listings&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;:&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;b&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;Variable declaration&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;put&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;on&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;the General&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;Dim&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;As&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;Integer&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;Dim&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;As&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;Integer&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;Dim&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;result&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;As&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;Integer&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span class=&quot;hps&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;Exit&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;Private Sub&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;Command2_Click&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;)&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;End&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;End Sub&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span class=&quot;hps&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;Sum&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;Private&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;Sub&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;Command1_Click&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;)&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;Text1.Text&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;Text2.Text&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;result&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;y&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;Text3.Text&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;hps&quot;&gt;result&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;End Sub&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: black; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;&lt;span class=&quot;hps&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;hps&quot;&gt;Completed&lt;/span&gt;&lt;br style=&quot;mso-special-character: line-break;&quot; /&gt; &lt;br style=&quot;mso-special-character: line-break;&quot; /&gt; &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7d-iCovUyCNLNb3Fv08VmMpl-g6a0-qKsCYfV6tYbmxNkjjL2L-nUwiYfWxaWauml7D7xOIXa4jy_paq3Zl85uyoDncE25NI2qerDz1ebHLh08-EgBVMK2EO13Sp7x5NSNvHsD68tCJQ/s1600/sum002.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7d-iCovUyCNLNb3Fv08VmMpl-g6a0-qKsCYfV6tYbmxNkjjL2L-nUwiYfWxaWauml7D7xOIXa4jy_paq3Zl85uyoDncE25NI2qerDz1ebHLh08-EgBVMK2EO13Sp7x5NSNvHsD68tCJQ/s320/sum002.jpg&quot; style=&quot;cursor: move;&quot; width=&quot;313&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
thank you for visiting my blog&lt;div class=&quot;blogger-post-footer&quot;&gt;programminghaha&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://programminghaha.blogspot.com/feeds/4460311222849284766/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://programminghaha.blogspot.com/2011/04/creating-program-with-variable-sum.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/4460311222849284766'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8599048919554551230/posts/default/4460311222849284766'/><link rel='alternate' type='text/html' href='http://programminghaha.blogspot.com/2011/04/creating-program-with-variable-sum.html' title='Creating a program with a variable sum - visual basic'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8-2vSs4w3__nf6MN9MK72uvr00ot58loA8PdFI45kN643-vEKIvtqOwDBAhcYU5kjnMZiy-yKacqyrb7aCjqT_-qzJ4dq_dIb5RVZBnA544G6Fo7sVfdtoV_2erSCvOxWWARG57qhhU8/s72-c/sum000.jpg" height="72" width="72"/><thr:total>0</thr:total></entry></feed>