<?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: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-2702213201706756473</id><updated>2011-11-27T15:35:05.079-08:00</updated><title type='text'>Web Technology</title><subtitle type='html'>Featuring Web Technologies</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://dkchamara.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2702213201706756473/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://dkchamara.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Kasun Chamara</name><uri>http://www.blogger.com/profile/09463074334607074440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_jc2tZeQ2WVo/SOBWDY8df1I/AAAAAAAAAB0/Y35kE-m5vBE/S220/Kasun+1.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2702213201706756473.post-4535493553767583727</id><published>2009-09-29T21:41:00.000-07:00</published><updated>2009-09-29T21:42:24.177-07:00</updated><title type='text'>XML Site Map</title><content type='html'>Overview&lt;br /&gt;&lt;br /&gt;Last month, we featured a basic introduction of the Extensible Markup Language (XML) and how to begin writing your own XML documents. While we were able to create an XML document to describe data, it may not be clear why this is useful. In an effort to utilize what we learned in the last tutorial, as well as to provide a real-world example of how XML is used, we will be creating a Google Sitemap file in this tutorial.&lt;br /&gt;&lt;br /&gt;Google Sitemap is a beta feature of the Google search engine that allows webmasters to submit an XML file describing the structure of a website. While this will not help the page ranking of the site in the Google index, it does provide a roadmap to help the Google search engine crawl a website more effectively. Google has defined a series of XML tags and attributes that can be used in a sitemap file, known as an XML schema. This pre-defined schema allows us to include information about what pages are available to be crawled by the search engine, the importance of the information in our opinion, the last time the content of each page was modified, and the expected frequency that the content on each page will be updated.&lt;br /&gt;&lt;br /&gt;Armed with our knowledge of XML from last month’s tutorial, we are going to be building our own Google sitemap for our fictitious website that sells widgets. Our first step will be to analyze our website and gain the information that we will need in order to create our Google Sitemap. As mentioned before, we will need to compile all the pages that we want the search engine to crawl, rank the importance of each page, find out the last time each page was modified, and how often we expect each page to be updated. Using this information we can build our XML file based on the Sitemap protocol defined by Google. Since XML provides a method for marking up information using tags and attributes, we need to make sure that our XML tags are consistent with what Google is expecting from us. This is where the power and flexibility of XML begins to become apparent. By defining what tags, attributes, and values we can use in an XML file (the “schema”), Google is able to create a protocol which allows us to efficiently transfer a massive amount of information about our website in a structured manner that their system can automatically utilize.&lt;br /&gt;&lt;br /&gt;Once we have created our XML file, we will need to post our Google Sitemap on our website, and submit its location to the search engine. While this does not guarantee inclusion into the Google index, the search engine will now be able to access our sitemap file when it indexes our website and use the information contained in it to more effectively crawl and index the website content. Combined with other search engine optimization techniques, creating a Google Sitemap can help you to improve your search engine placement and get an edge on your competition.&lt;br /&gt;Instruction&lt;br /&gt;&lt;br /&gt;In this tutorial we will be creating a Google Sitemap for a small website that sells widgets. Since we will be keeping it simple, out website will consist of a home page, a contact page, and a products page. Luckily we don’t need to actually invent content for these pages, since the Google Sitemap file that we are going to create is meant to guide the search engine to the content of the site, not describe it. In order to create our XML file we will first need to gather some information about our website pages.&lt;br /&gt;&lt;br /&gt;The Google Sitemap protocol defines XML tags that will be used to structure the information about our website. While we are required to include information about the location of each page on our website (or the URL of each page), other information is optional. As we mentioned before, we also have the option of including information about the importance of each page, the last time each page was modified, and how often we expect each page to be modified. Since we want to include as much information as we can, let’s take a look at our website and see what we will need.&lt;br /&gt;&lt;br /&gt;Our homepage is important. We have made sure that it is saturated with relevant keywords, and we have optimized the code to make sure that search engine like our home page. Since this page describes our company and gives an overview of our products, we should feel as though this page is pretty important. All of our web pages were modified right before we created this sitemap file, so we know that value will be the same for all pages. We also update our home page weekly to provide new content and special offers. This is all the information that we need to begin.&lt;br /&gt;&lt;br /&gt;While we are building our file we will repeat this process for each page that we include in the sitemap. However, let’s first use our XML knowledge from the last tutorial and begin to build our file. The Google Sitemap protocol requires that our XML file be encoding in UTF-8, or Unicode in order to accommodate special characters. This important because we need to declare this in our XML declaration tag. Our file then starts with:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If you remember from the last tutorial, this opening tag simply declares that this is an XML file and describes the character encoding of the file. This will always be the same for a Google Sitemap, so don’t worry about understanding this one. Just make sure that it is there. Our next piece of code will also remain the same in any Google Sitemap, and that is a tag that encapsulates all the data in the file. It also has an attribute that identifies this file as a Google Sitemap:&lt;br /&gt;&lt;br /&gt;&lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;br /&gt;&lt;urlset xmlns="http://www.google.com/schemas/sitemap/0.84"&gt;&lt;br /&gt;&lt;/urlset&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Notice that we have again created an opening tag, which contains an attribute, and a closing tag. We have left a space between since all of the data in our file will be contained inside this &amp;lt;urlset&amp;gt; tag. Next we create a tag that will contain the information about the home page of our site. Information about each page of the site will be contained within another tag called the &lt;url&gt; tag. As you can see, the information about each page will be contained inside the &lt;url&gt; tag:&lt;br /&gt;&lt;br /&gt;&lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;br /&gt;&lt;urlset xmlns="http://www.google.com/schemas/sitemap/0.84"&gt;&lt;br /&gt;&lt;url&gt;&lt;br /&gt;&lt;/url&gt;&lt;br /&gt;&lt;/urlset&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;We know that the content on our home page is updated at least weekly to promote product offers, company announcements, and industry news so we want to include this information in out sitemap. This is accomplished by using the next available tag, which is the &lt;changefreq&gt; tag, which tells the search engine how often to crawl the site. Below is a list of the available values for this tag:&lt;br /&gt;&lt;br /&gt;    * always&lt;br /&gt;    * hourly&lt;br /&gt;    * daily&lt;br /&gt;    * weekly&lt;br /&gt;    * monthly&lt;br /&gt;    * yearly&lt;br /&gt;    * never&lt;br /&gt;&lt;br /&gt;It is important to note here that you should put the value that best describes your website. While many might feel the temptation to tell the search engine that their content is always updated, that could hurt your placement in the long run. It won’t take too long for the search engine to figure out that the content is not changing as frequently as expected, and you may be punished for trying to fool the system. More importantly, you want the search engine to crawl your site and discover fresh content, so the more accurate you can be here the better. Remember, this value does not limit the search engine to crawling these pages at the defined interval, it simply advises it as to how often it should expect new content. Take a look at our file now:&lt;br /&gt;&lt;br /&gt;&lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;br /&gt;&lt;urlset xmlns="http://www.google.com/schemas/sitemap/0.84"&gt;&lt;br /&gt;&lt;url&gt;&lt;br /&gt;&lt;loc&gt;http://www.widgetsexample.com&lt;/loc&gt;&lt;br /&gt;&lt;lastmod&gt;2005-10-31&lt;/lastmod&gt;&lt;br /&gt;&lt;changefreq&gt;weekly&lt;/changefreq&gt;&lt;br /&gt;&lt;/url&gt;&lt;br /&gt;&lt;/urlset&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Finally, we want to inform the Google search engine that we think that this page is important. We do this by including the &lt;priority&gt; tag outlined in the Google Sitemap protocol. We can insert a value inside this tag between 0.0 and 1.0 to rank the importance, with a 0.0 being the least important and a 1.0 being the most important. Since we have deemed our home page to be pretty important, but not as important as our products page we will use a value of 0.8:&lt;br /&gt;&lt;br /&gt; &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;br /&gt;&lt;urlset xmlns="http://www.google.com/schemas/sitemap/0.84"&gt;&lt;br /&gt;&lt;url&gt;&lt;br /&gt;&lt;loc&gt;http://www.widgetsexample.com&lt;/loc&gt;&lt;br /&gt;&lt;lastmod&gt;2005-10-31&lt;/lastmod&gt;&lt;br /&gt;&lt;changefreq&gt;weekly&lt;/changefreq&gt;&lt;br /&gt;&lt;priority&gt;0.8&lt;/priority&gt;&lt;br /&gt;&lt;/url&gt;&lt;br /&gt;&lt;/urlset&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;As you can see, we have now described all of the pertinent information that we can about our home page in our Google Sitemap document. We now need to repeat the process for our other two pages. Remember that information about each page is contained within the &lt;url&gt; tags, so we will simply add more of these tags after the first. Take a look at our finished XML file:&lt;br /&gt;&lt;br /&gt;&lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;br /&gt;&lt;urlset xmlns="http://www.google.com/schemas/sitemap/0.84"&gt;&lt;br /&gt;&lt;url&gt;&lt;br /&gt;&lt;loc&gt;http://www.widgetsexample.com&lt;/loc&gt;&lt;br /&gt;&lt;lastmod&gt;2005-10-31&lt;/lastmod&gt;&lt;br /&gt;&lt;changefreq&gt;weekly&lt;/changefreq&gt;&lt;br /&gt;&lt;priority&gt;0.8&lt;/priority&gt;&lt;br /&gt;&lt;/url&gt;&lt;br /&gt;&lt;url&gt;&lt;br /&gt;&lt;loc&gt;http://www.widgetsexample.com/contact.html&lt;/loc&gt;&lt;br /&gt;&lt;lastmod&gt;2005-10-15&lt;/lastmod&gt;&lt;br /&gt;&lt;priority&gt;0.5&lt;/priority&gt;&lt;br /&gt;&lt;/url&gt;&lt;br /&gt;&lt;url&gt;&lt;br /&gt;&lt;loc&gt;http://www.widgetsexample.com/products.html&lt;/loc&gt;&lt;br /&gt;&lt;lastmod&gt;2005-10-31&lt;/lastmod&gt;&lt;br /&gt;&lt;changefreq&gt;daily&lt;/changefreq&gt;&lt;br /&gt;&lt;priority&gt;1.0&lt;/priority&gt;&lt;br /&gt;&lt;/url&gt;&lt;br /&gt;&lt;/urlset&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Notice that we have set the importance value for our products page to 1.0, indicating that we feel it is the most important page on our website. Also notice that since we don’t expect the contact page to change, we have not included the &lt;changefreq&gt; tag. We have also placed the least amount of importance on this page, although we have still indicated that we feel it is important. This completes our XML Google Sitemap file, and all that waits is to submit it to the Google Sitemap service.&lt;br /&gt;&lt;br /&gt;The first step to submitting our sitemap file is to upload it to our website. In this example, we will save our sitemap file in the root directory of our website, called sitemap.xml. Once we have done this, we can provide the URL of our sitemap to Google so that the search engine may begin using it. You will need to log in with your Google account information, or create an account if you don’t already have one. Once we have logged in, we will enter the complete URL of our sitemap as follows:&lt;br /&gt;&lt;br /&gt;http://www.widgetsexample.com/sitemap.xml&lt;br /&gt;&lt;br /&gt;Click “Submit URL” and we are finished. If you decide to change you sitemap in the future simply re-submit it again once it has changed. We have now created a Google Sitemap file that will assist the search engine in crawling our website more effectively, and added another tool to our search engine optimization arsenal.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2702213201706756473-4535493553767583727?l=dkchamara.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dkchamara.blogspot.com/feeds/4535493553767583727/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2702213201706756473&amp;postID=4535493553767583727' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2702213201706756473/posts/default/4535493553767583727'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2702213201706756473/posts/default/4535493553767583727'/><link rel='alternate' type='text/html' href='http://dkchamara.blogspot.com/2009/09/xml-site-map.html' title='XML Site Map'/><author><name>Kasun Chamara</name><uri>http://www.blogger.com/profile/09463074334607074440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_jc2tZeQ2WVo/SOBWDY8df1I/AAAAAAAAAB0/Y35kE-m5vBE/S220/Kasun+1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2702213201706756473.post-618458541530879828</id><published>2009-09-29T20:32:00.000-07:00</published><updated>2009-09-29T20:35:04.047-07:00</updated><title type='text'>Google Analytics</title><content type='html'>Google Analytics is the enterprise-class web analytics solution that gives you rich insights into your website traffic and marketing effectiveness. Powerful, flexible and easy-to-use features now let you see and analyze your traffic data in an entirely new way. With Google Analytics, you're more prepared to write better-targeted ads, strengthen your marketing initiatives and create higher converting websites.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2702213201706756473-618458541530879828?l=dkchamara.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dkchamara.blogspot.com/feeds/618458541530879828/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2702213201706756473&amp;postID=618458541530879828' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2702213201706756473/posts/default/618458541530879828'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2702213201706756473/posts/default/618458541530879828'/><link rel='alternate' type='text/html' href='http://dkchamara.blogspot.com/2009/09/google-analytics.html' title='Google Analytics'/><author><name>Kasun Chamara</name><uri>http://www.blogger.com/profile/09463074334607074440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_jc2tZeQ2WVo/SOBWDY8df1I/AAAAAAAAAB0/Y35kE-m5vBE/S220/Kasun+1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2702213201706756473.post-8295581812649513295</id><published>2009-08-19T20:23:00.000-07:00</published><updated>2009-08-19T20:25:36.038-07:00</updated><title type='text'>Search engine optimization (SEO)</title><content type='html'>SEO is an acronym for "search engine optimization" or "search engine optimizer." Deciding to hire an SEO is a big decision that can potentially improve your site and save time, but you can also risk damage to your site and reputation. Make sure to research the potential advantages as well as the damage that an irresponsible SEO can do to your site. Many SEOs and other agencies and consultants provide useful services for website owners, including:&lt;br /&gt;&lt;br /&gt;    * Review of your site content or structure&lt;br /&gt;    * Technical advice on website development: for example, hosting, redirects, error pages, use of JavaScript&lt;br /&gt;    * Content development&lt;br /&gt;    * Management of online business development campaigns&lt;br /&gt;    * Keyword research&lt;br /&gt;    * SEO training&lt;br /&gt;    * Expertise in specific markets and geographies.&lt;br /&gt;&lt;br /&gt;Keep in mind that the Google search results page includes organic search results and often paid advertisement (denoted by the heading "Sponsored Links") as well. Advertising with Google won't have any effect on your site's presence in our search results. Google never accepts money to include or rank sites in our search results, and it costs nothing to appear in our organic search results. Free resources such as Webmaster Tools, the official Webmaster Central blog, and our discussion forum can provide you with a great deal of information about how to optimize your site for organic search. Many of these free sources, as well as information on paid search, can be found on Google Webmaster Central.&lt;br /&gt;&lt;br /&gt;Before beginning your search for an SEO, it's a great idea to become an educated consumer and get familiar with how search engines work. We recommend starting here:&lt;br /&gt;&lt;br /&gt;    * Google Webmaster Guidelines&lt;br /&gt;    * Google 101: How Google crawls, indexes and serves the web.&lt;br /&gt;&lt;br /&gt;If you're thinking about hiring an SEO, the earlier the better. A great time to hire is when you're considering a site redesign, or planning to launch a new site. That way, you and your SEO can ensure that your site is designed to be search engine-friendly from the bottom up. However, a good SEO can also help improve an existing site.&lt;br /&gt;&lt;br /&gt;Some useful questions to ask an SEO include:&lt;br /&gt;&lt;br /&gt;    * Can you show me examples of your previous work and share some success stories?&lt;br /&gt;    * Do you follow the Google Webmaster Guidelines?&lt;br /&gt;    * Do you offer any online marketing services or advice to complement your organic search business?&lt;br /&gt;    * What kind of results do you expect to see, and in what timeframe? How do you measure your success?&lt;br /&gt;    * What's your experience in my industry?&lt;br /&gt;    * What's your experience in my country/city?&lt;br /&gt;    * What's your experience developing international sites?&lt;br /&gt;    * What are your most important SEO techniques?&lt;br /&gt;    * How long have you been in business?&lt;br /&gt;    * How can I expect to communicate with you? Will you share with me all the changes you make to my site, and provide detailed information about your recommendations and the reasoning behind them?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2702213201706756473-8295581812649513295?l=dkchamara.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dkchamara.blogspot.com/feeds/8295581812649513295/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2702213201706756473&amp;postID=8295581812649513295' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2702213201706756473/posts/default/8295581812649513295'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2702213201706756473/posts/default/8295581812649513295'/><link rel='alternate' type='text/html' href='http://dkchamara.blogspot.com/2009/08/search-engine-optimization-seo.html' title='Search engine optimization (SEO)'/><author><name>Kasun Chamara</name><uri>http://www.blogger.com/profile/09463074334607074440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_jc2tZeQ2WVo/SOBWDY8df1I/AAAAAAAAAB0/Y35kE-m5vBE/S220/Kasun+1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2702213201706756473.post-7993532481938041898</id><published>2009-03-08T10:47:00.001-07:00</published><updated>2009-03-08T10:47:12.885-07:00</updated><title type='text'>Introduction to PHP</title><content type='html'>&lt;span style="font-weight:bold;"&gt;What You Should Already Know&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Before you continue you should have a basic understanding of the following:&lt;br /&gt;&lt;br /&gt;    * HTML&lt;br /&gt;    * Some scripting knowledge&lt;br /&gt;&lt;br /&gt;If you want to study these subjects first, find the tutorials on our Home page.&lt;br /&gt;What is PHP?&lt;br /&gt;&lt;br /&gt;    * PHP stands for PHP: Hypertext Preprocessor&lt;br /&gt;    * PHP is a server-side scripting language, like ASP&lt;br /&gt;    * PHP scripts are executed on the server&lt;br /&gt;    * PHP supports many databases (MySQL, Informix, Oracle, Sybase, Solid, PostgreSQL, Generic ODBC, etc.)&lt;br /&gt;    * PHP is an open source software&lt;br /&gt;    * PHP is free to download and use&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;What is a PHP File?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;    * PHP files can contain text, HTML tags and scripts&lt;br /&gt;    * PHP files are returned to the browser as plain HTML &lt;br /&gt;    * PHP files have a file extension of ".php", ".php3", or ".phtml"&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;What is MySQL?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;    * MySQL is a database server&lt;br /&gt;    * MySQL is ideal for both small and large applications&lt;br /&gt;    * MySQL supports standard SQL&lt;br /&gt;    * MySQL compiles on a number of platforms&lt;br /&gt;    * MySQL is free to download and use&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;PHP + MySQL&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;    * PHP combined with MySQL are cross-platform (you can develop in Windows and serve on a Unix platform)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Why PHP?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;    * PHP runs on different platforms (Windows, Linux, Unix, etc.)&lt;br /&gt;    * PHP is compatible with almost all servers used today (Apache, IIS, etc.)&lt;br /&gt;    * PHP is FREE to download from the official PHP resource: www.php.net&lt;br /&gt;    * PHP is easy to learn and runs efficiently on the server side&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Where to Start?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To get access to a web server with PHP support, you can:&lt;br /&gt;&lt;br /&gt;    * Install Apache (or IIS) on your own server, install PHP, and MySQL&lt;br /&gt;    * Or find a web hosting plan with PHP and MySQL support&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2702213201706756473-7993532481938041898?l=dkchamara.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dkchamara.blogspot.com/feeds/7993532481938041898/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2702213201706756473&amp;postID=7993532481938041898' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2702213201706756473/posts/default/7993532481938041898'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2702213201706756473/posts/default/7993532481938041898'/><link rel='alternate' type='text/html' href='http://dkchamara.blogspot.com/2009/03/introduction-to-php_08.html' title='Introduction to PHP'/><author><name>Kasun Chamara</name><uri>http://www.blogger.com/profile/09463074334607074440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_jc2tZeQ2WVo/SOBWDY8df1I/AAAAAAAAAB0/Y35kE-m5vBE/S220/Kasun+1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2702213201706756473.post-8181455865317897172</id><published>2009-03-08T10:43:00.000-07:00</published><updated>2009-03-08T10:44:13.399-07:00</updated><title type='text'>An Introduction to phpMyAdmin for Databases</title><content type='html'>Once you are ready to use a database in your PHP programs, you have a few options available to you for creating and working with databases. You can write your own PHP program that will set up the database and its tables or you can use a previously written program that will do this work for you. There are several prewritten applications that you can use, but the one I will use in the next few tutorials is phpMyAdmin.&lt;br /&gt;&lt;br /&gt;The reason that I have chosen to use this program is that it is available on most hosting servers and, in case your web hosting company doesn't have it, you can download a free copy from phpMyAdmin.net and upload it to your website. Yes, I said it was free. It is an open source program written in PHP and offered free under the GPL License. The latest version supports PHP 5 and MySQLR 4.1 and 5.0.&lt;br /&gt;&lt;br /&gt;So what can this program do for you? It works via a web browser to act as a communication interface for creating and editing databases and database tables. All you need to do is enter the information into the web form and the program will execute the SQl statements for you. Below is a list of the most common jobs.&lt;br /&gt;&lt;br /&gt;   1. Database - Create and drop (remove)&lt;br /&gt;&lt;br /&gt;   2. Tables - Create, alter and drop&lt;br /&gt;&lt;br /&gt;   3. Table Fields - Add, edit and delete&lt;br /&gt;&lt;br /&gt;   4. SQL Statements - Execute SQL statements such as the dump (export) statement for     easily making a backup of your database.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2702213201706756473-8181455865317897172?l=dkchamara.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dkchamara.blogspot.com/feeds/8181455865317897172/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2702213201706756473&amp;postID=8181455865317897172' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2702213201706756473/posts/default/8181455865317897172'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2702213201706756473/posts/default/8181455865317897172'/><link rel='alternate' type='text/html' href='http://dkchamara.blogspot.com/2009/03/introduction-to-phpmyadmin-for.html' title='An Introduction to phpMyAdmin for Databases'/><author><name>Kasun Chamara</name><uri>http://www.blogger.com/profile/09463074334607074440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_jc2tZeQ2WVo/SOBWDY8df1I/AAAAAAAAAB0/Y35kE-m5vBE/S220/Kasun+1.jpg'/></author><thr:total>0</thr:total></entry></feed>
