<?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-2048300815409777677</id><updated>2011-11-27T16:57:59.020-08:00</updated><title type='text'>PHP script programming</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://phpeasy.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2048300815409777677/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://phpeasy.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>istyle</name><uri>http://www.blogger.com/profile/02217746917326382729</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='22' height='32' src='http://bp2.blogger.com/_nBKdvQEXQOE/R_EUyBxzzTI/AAAAAAAAACU/xWJlp3fraTQ/S220/travelor.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2048300815409777677.post-6637749233258289787</id><published>2008-03-27T00:02:00.000-07:00</published><updated>2008-03-27T00:15:23.307-07:00</updated><title type='text'>Introduction to PHP</title><content type='html'>&lt;p class="intro"&gt;&lt;span style="font-size:85%;"&gt;A PHP file may contain text, HTML tags and scripts. Scripts in a PHP file are executed on the server.&lt;/span&gt;&lt;/p&gt; &lt;hr style="height: 2px;"&gt;   &lt;h2&gt;&lt;span style="font-size:85%;"&gt;What You Should Already Know&lt;/span&gt;&lt;/h2&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;Before you continue you should have a basic understanding of the following:&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;HTML / XHTML&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Some scripting knowledge&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;If you want to study these subjects first, find the tutorials on our &lt;a href="http://www.w3schools.com/default.asp"&gt;Home page&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt; &lt;hr style="height: 2px;"&gt;   &lt;h2&gt;&lt;span style="font-size:85%;"&gt;What is PHP?&lt;/span&gt;&lt;/h2&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP stands for &lt;b&gt;P&lt;/b&gt;HP: &lt;b&gt;H&lt;/b&gt;ypertext &lt;b&gt;P&lt;/b&gt;reprocessor&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP is a server-side scripting language, like ASP&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP scripts are executed on the server&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP supports many databases (MySQL, Informix, Oracle, Sybase, Solid,   PostgreSQL, Generic ODBC, etc.)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP is an open source software (OSS)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP is free to download and use&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;h2&gt;&lt;span style="font-size:85%;"&gt;What is a PHP File?&lt;/span&gt;&lt;/h2&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP files may contain text, HTML tags and scripts&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP files are returned to the browser as plain HTML &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP files have a file extension of ".php", ".php3", or ".phtml"&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;h2&gt;&lt;span style="font-size:85%;"&gt;What is MySQL?&lt;/span&gt;&lt;/h2&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;MySQL is a database server&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;MySQL is ideal for both small and large applications&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;MySQL supports standard SQL&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;MySQL compiles on a number of platforms&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;MySQL is free to download and use&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;h2&gt;&lt;span style="font-size:85%;"&gt;PHP + MySQL&lt;/span&gt;&lt;/h2&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP combined with MySQL are cross-platform (means that you can develop in    Windows and serve on a Unix platform)&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;h2&gt;&lt;span style="font-size:85%;"&gt;Why PHP?&lt;/span&gt;&lt;/h2&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP runs on different platforms (Windows, Linux, Unix, etc.)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP is compatible with almost all servers used today (Apache, IIS, etc.)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP is FREE to download from the official PHP resource: &lt;a target="_blank" href="http://www.php.net/"&gt;   www.php.net&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;PHP is easy to learn and runs efficiently on the server side&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;h2&gt;&lt;span style="font-size:85%;"&gt;Where to Start?&lt;/span&gt;&lt;/h2&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Install an Apache server on a Windows or Linux machine&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Install PHP on a Windows or Linux machine&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Install MySQL on a Windows or Linux machine&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2048300815409777677-6637749233258289787?l=phpeasy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://phpeasy.blogspot.com/feeds/6637749233258289787/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2048300815409777677&amp;postID=6637749233258289787' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2048300815409777677/posts/default/6637749233258289787'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2048300815409777677/posts/default/6637749233258289787'/><link rel='alternate' type='text/html' href='http://phpeasy.blogspot.com/2008/03/php.html' title='Introduction to PHP'/><author><name>istyle</name><uri>http://www.blogger.com/profile/02217746917326382729</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='22' height='32' src='http://bp2.blogger.com/_nBKdvQEXQOE/R_EUyBxzzTI/AAAAAAAAACU/xWJlp3fraTQ/S220/travelor.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2048300815409777677.post-7503675591328254854</id><published>2008-03-04T08:46:00.000-08:00</published><updated>2008-03-27T00:17:31.818-07:00</updated><title type='text'>PHP script programming</title><content type='html'>&lt;span style="font-family:verdana;font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;Welcome to my php blog. Here you will learn about php tips and how to find good information.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;PHP&lt;/span&gt; is a powerful server-side scripting language for creating dynamic and interactive websites.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;PHP&lt;/span&gt; is the widely-used, free, and efficient alternative to competitors  such as Microsoft's ASP. &lt;span style="font-weight: bold;"&gt;PHP&lt;/span&gt; is perfectly suited for Web development and can be  embedded directly into the HTML code.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;The&lt;span style="font-weight: bold;"&gt; PHP&lt;/span&gt; syntax is very similar to Perl and C. &lt;span style="font-weight: bold;"&gt;PHP&lt;/span&gt; is often used together  with Apache (web server) on various operating systems. It also supports ISAPI  and can be used with Microsoft's IIS on Windows.&lt;/span&gt;&lt;/p&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2048300815409777677-7503675591328254854?l=phpeasy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://phpeasy.blogspot.com/feeds/7503675591328254854/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2048300815409777677&amp;postID=7503675591328254854' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2048300815409777677/posts/default/7503675591328254854'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2048300815409777677/posts/default/7503675591328254854'/><link rel='alternate' type='text/html' href='http://phpeasy.blogspot.com/2008/03/php-script-programming.html' title='PHP script programming'/><author><name>istyle</name><uri>http://www.blogger.com/profile/02217746917326382729</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='22' height='32' src='http://bp2.blogger.com/_nBKdvQEXQOE/R_EUyBxzzTI/AAAAAAAAACU/xWJlp3fraTQ/S220/travelor.jpg'/></author><thr:total>0</thr:total></entry></feed>
