<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>LAMP How To - Open Source At Work &#187; Think PHP</title>
	<atom:link href="http://www.azhowto.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.azhowto.com</link>
	<description>Only Passion Matters</description>
	<lastBuildDate>Wed, 01 Sep 2010 01:49:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>sending data via url securely</title>
		<link>http://www.azhowto.com/2010/07/31/sending-data-via-url-securely/</link>
		<comments>http://www.azhowto.com/2010/07/31/sending-data-via-url-securely/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 04:08:58 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=677</guid>
		<description><![CDATA[Depending on your situation, sometimes it is quicker to append form data to urls. To do this securely, we need to encrypt it and decrypt it later. One good solution is to use mcrypt.
We can create a class like so:
class Encryption {

 var $skey  = "your own key"; 

    public  function safe_b64encode($string) {

        $data = base64_encode($string);
        $data = [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/07/31/sending-data-via-url-securely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick tips for setting up Eclipse and Monkey</title>
		<link>http://www.azhowto.com/2010/03/29/quick-tips-for-setting-up-eclipse-and-monkey/</link>
		<comments>http://www.azhowto.com/2010/03/29/quick-tips-for-setting-up-eclipse-and-monkey/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 02:50:23 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=654</guid>
		<description><![CDATA[
eclipse-pdtis a php integrated eclipse IDE &#8211; good for rapid web development.
download eclipse-pdt from above.
setup subclipse (for svn) if you intend to use svn within eclipse. In eclipse-&#62;help-&#62;software updates-&#62;available software-&#62;add site, enter URL: http://subclipse.tigris.org/update_1.6.x
Another good software to install is beyond cvs. In eclipse-&#62;help-&#62;software updates-&#62;available software-&#62;add site, enter URL: http://beyondcvs.sourceforge.net/update/0.8.x/

 

install subeclipse and javaHL adapter.
setup eclipse monkey [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/03/29/quick-tips-for-setting-up-eclipse-and-monkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick SVN Tutorial</title>
		<link>http://www.azhowto.com/2010/03/29/quick-svn-tutorial/</link>
		<comments>http://www.azhowto.com/2010/03/29/quick-svn-tutorial/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 02:43:13 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=652</guid>
		<description><![CDATA[Create New Repo
svnadmin create /home/data/svn/[dir-name]
chown apache:developer -R /home/data/svn/[dir-name]
chown 2770 /home/data/svn/[dir-name]

Import New Site

 ssh into server
 to import new site to the trunk,

svn import [your-site] file:///home/data/svn/[your-site-name] -m "[import comments]"

View Available Sites In Trunk
svn ls file:///home/svn/trunk/

Checking Out a Site

 Create a directory to checkout and use &#8217;svn co&#8217;

 cd ~
 mkdir [my-site]
 svn co file:///home/svn/trunk/[site-name] [my-site]

Updating a [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/03/29/quick-svn-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>submitting a form using hyperlinks</title>
		<link>http://www.azhowto.com/2010/02/10/submitting-a-form-using-hyperlinks/</link>
		<comments>http://www.azhowto.com/2010/02/10/submitting-a-form-using-hyperlinks/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 03:08:36 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think SQL]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=625</guid>
		<description><![CDATA[If using hyperlink to submit form, remember to return false in &#8220;onclick&#8221; so that it is backward compatible with IE6, ie
&#60;a class=&#8221;button_next&#8221; href=&#8221;javascript:;&#8221; onclick=&#8221;$(&#8216;#form_wizard&#8217;).submit();return false;&#8221;&#62;
&#60;span&#62;Update&#60;/span&#62;
&#60;/a&#62;
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/02/10/submitting-a-form-using-hyperlinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>resolving jquery conflict with other javascript libraries</title>
		<link>http://www.azhowto.com/2010/02/04/resolving-jquery-conflict-with-other-javascript-libraries/</link>
		<comments>http://www.azhowto.com/2010/02/04/resolving-jquery-conflict-with-other-javascript-libraries/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 00:23:31 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=622</guid>
		<description><![CDATA[It is good to know that jquery can work with other js libraries&#8230;
Just need to know how to resolve the conflict
http://api.jquery.com/jQuery.noConflict
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/02/04/resolving-jquery-conflict-with-other-javascript-libraries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php coding standard and tips</title>
		<link>http://www.azhowto.com/2010/01/10/php-coding-standard-and-tips/</link>
		<comments>http://www.azhowto.com/2010/01/10/php-coding-standard-and-tips/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 10:53:32 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=607</guid>
		<description><![CDATA[It is important that developers follow a certain coding standard to help make the code readable and maintainable. These are what I gathered so far as the best coding practice:
File formatting:
- Never close php tag when using zend framework, ie, &#8220;?&#62;&#8221;
- Use 4 space indentation as tab spacing. It is possible to configure this in [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/01/10/php-coding-standard-and-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bash: passing output from one program to another</title>
		<link>http://www.azhowto.com/2009/08/21/bash-passing-output-from-one-program-to-another/</link>
		<comments>http://www.azhowto.com/2009/08/21/bash-passing-output-from-one-program-to-another/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 06:54:54 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Networking]]></category>
		<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think SQL]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=524</guid>
		<description><![CDATA[sometimes you want to be able to pass output from one program to another, say from bash to php. There is a neat trick to do it.  In php, we execute the bash script restartapache.
&#60;?php
$command="/usr/local/bin/restartapache {$_GET['server']}";
exec($command, $output); foreach ($output as $v)
{ echo "$v &#60;br/&#62;"; }
?&#62;
then in the bash, we write the output to a [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/08/21/bash-passing-output-from-one-program-to-another/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: manual install of pear</title>
		<link>http://www.azhowto.com/2009/08/14/php-manual-install-of-pear/</link>
		<comments>http://www.azhowto.com/2009/08/14/php-manual-install-of-pear/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 04:53:55 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=510</guid>
		<description><![CDATA[Sometimes, certain php apps require certain packages to be installed via pear.
Use yum if given a choice, ie &#8220;yum install php-pear&#8221;.
If yum is not available or due to whatever reason, We need to manually install a new version from pear website.
elinks -source http://pear.php.net/go-pear &#124; php

// follow thru the prompts. then configure the installation parameters

Below is [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/08/14/php-manual-install-of-pear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick script to sort mysql database/tables based on table size</title>
		<link>http://www.azhowto.com/2009/08/11/quick-script-to-sort-mysql-databasetables-based-on-table-size/</link>
		<comments>http://www.azhowto.com/2009/08/11/quick-script-to-sort-mysql-databasetables-based-on-table-size/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 01:09:28 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=505</guid>
		<description><![CDATA[Mysql can show the table status with the row and size for each table but doesn’t do sorting. We can however store each row in an array and sort the array.
I am too lazy to write a script for it. 2 x for loops does the trick. This script is from adamyoung.net. Just run the [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/08/11/quick-script-to-sort-mysql-databasetables-based-on-table-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting idml coordinates to pixels</title>
		<link>http://www.azhowto.com/2009/08/04/converting-idml-coordinates-to-pixels/</link>
		<comments>http://www.azhowto.com/2009/08/04/converting-idml-coordinates-to-pixels/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 23:47:48 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[idml]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=480</guid>
		<description><![CDATA[As of CS4, indesign has the ability to export to idml. idml is indesign&#8217;s xml format and is very useful if you want to use it in other applications. The only complicated part is the way it calculates the coordinates. If you are interested, you can look at the official idml doc + the cookbook [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/08/04/converting-idml-coordinates-to-pixels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux: clearing routing rules</title>
		<link>http://www.azhowto.com/2009/07/02/linux-clearing-routing-rules/</link>
		<comments>http://www.azhowto.com/2009/07/02/linux-clearing-routing-rules/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 00:45:18 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think PHP]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=460</guid>
		<description><![CDATA[I am used to the route command but I just realised the ip command is really good as well. Well, I am aware of it but I just didn&#8217;t use it because I am so used to the route, ifup and ifdown commands.
If for some reason, I can&#8217;t drop the interface,

ip link set [iface] up/down

is [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/07/02/linux-clearing-routing-rules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Quick Calendar V2.5 Updates</title>
		<link>http://www.azhowto.com/2009/03/09/php-quick-calendar-v25-updates/</link>
		<comments>http://www.azhowto.com/2009/03/09/php-quick-calendar-v25-updates/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 00:39:58 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[quick calendar]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=412</guid>
		<description><![CDATA[* Fixed minor bug relating to event date not displaying in order.
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/03/09/php-quick-calendar-v25-updates/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to create a simple CMS without DB access</title>
		<link>http://www.azhowto.com/2009/02/24/how-to-create-a-simple-cms-without-db-access/</link>
		<comments>http://www.azhowto.com/2009/02/24/how-to-create-a-simple-cms-without-db-access/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 22:49:53 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[cms]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=405</guid>
		<description><![CDATA[A Content Management System (CMS) allows you to update your website easily without touching anything in the backend. If you are a non-IT person, you will almost always want a CMS for your website because it makes you less dependent on your web designers or developers to add, edit or delete contents in your website.
There [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/02/24/how-to-create-a-simple-cms-without-db-access/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Online Calendar Using PHP and AJAX Update 1</title>
		<link>http://www.azhowto.com/2009/01/02/online-calendar-using-php-and-ajax-update/</link>
		<comments>http://www.azhowto.com/2009/01/02/online-calendar-using-php-and-ajax-update/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 14:04:29 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[online calendar]]></category>
		<category><![CDATA[quick calendar]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/?p=158</guid>
		<description><![CDATA[A bit of history if you are interested
I can vaguely recalled that a designer friend wanted to add a calendar to a custom made CMS. We searched high and low found a few good ones &#8211; some commercial and some open source. He found the installation and configuration daunting though.
As a programmer, I knew that [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/01/02/online-calendar-using-php-and-ajax-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend QuickStart Error</title>
		<link>http://www.azhowto.com/2008/11/18/zend-quickstart-error-2/</link>
		<comments>http://www.azhowto.com/2008/11/18/zend-quickstart-error-2/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 02:56:39 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/2008/11/18/zend-quickstart-error-2/</guid>
		<description><![CDATA[If you have been following the zend quickstart tutorial at Zend site:
http://framework.zend.com/docs/quickstart
and couldn&#8217;t work out why it didn&#8217;t work&#8230; You need to check a few things. A few friends complained that the code aren&#8217;t working. How can you expect Zend to release something that is not working??!! Well, I was persuaded to go through the [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2008/11/18/zend-quickstart-error-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command Line Blogging &#8211; Wordpress</title>
		<link>http://www.azhowto.com/2008/10/29/command-line-blogging-wordpress/</link>
		<comments>http://www.azhowto.com/2008/10/29/command-line-blogging-wordpress/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 08:43:38 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/?p=132</guid>
		<description><![CDATA[I am using command line most of the time because of the nature of my work. Normally, when I discovered new techniques to do things, solved a problem or had a cool idea, I would write them down on my exercise book. It soon became clear that I needed something more concrete as copying lines [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2008/10/29/command-line-blogging-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Rankings With PEAR SOAP</title>
		<link>http://www.azhowto.com/2008/10/20/search-engine-rankings-with-pear-soap/</link>
		<comments>http://www.azhowto.com/2008/10/20/search-engine-rankings-with-pear-soap/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 10:12:05 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[soap]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/?p=58</guid>
		<description><![CDATA[Google implemented a search API in 2002 for web developers to do Google search within their own website. By using SOAP (Simple Object Access Protocol) procedures, the API allows the search and results retrieval to run in the background.
I have implemented a google search function in this website using PEAR SOAP. The script loops through [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2008/10/20/search-engine-rankings-with-pear-soap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Calendar Using PHP and AJAX</title>
		<link>http://www.azhowto.com/2008/10/20/online-calendar-using-php-and-ajax/</link>
		<comments>http://www.azhowto.com/2008/10/20/online-calendar-using-php-and-ajax/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 10:09:34 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[quick calendar]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/?p=55</guid>
		<description><![CDATA[This calendar plugs in seamless with any content management system you are using. With Ajax, your screen need not be refreshed. The functionality can be easily extended using inheritance.
The full demo can be seen here &#8211; PHP Ajax Calendar and source code is here &#8211; Simple PHP Calendar Source.
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2008/10/20/online-calendar-using-php-and-ajax/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Web 2.0 online picture framing application</title>
		<link>http://www.azhowto.com/2007/07/19/web20-online-picture-framing-application/</link>
		<comments>http://www.azhowto.com/2007/07/19/web20-online-picture-framing-application/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 08:34:47 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/2007/07/19/web20-online-picture-framing-application/</guid>
		<description><![CDATA[Yourframer is finally launched after putting in alot of hardwork. The program is designed with flexibility and expandability in mind. Anyone can simply transfer an image from anywhere and start framing almost instantaneously by inserting a simple javascript in their site. Say, for example in my flickr album, I can frame any high res image [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2007/07/19/web20-online-picture-framing-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax and search engine optmisation</title>
		<link>http://www.azhowto.com/2007/03/30/ajax-and-search-engine-optmisation/</link>
		<comments>http://www.azhowto.com/2007/03/30/ajax-and-search-engine-optmisation/#comments</comments>
		<pubDate>Fri, 30 Mar 2007 06:47:30 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/?p=35</guid>
		<description><![CDATA[Ajax is good at displaying different content in the same url. There is no way for search engines to index pages like that. What search engines need are unique urls. No matter how long the url, as long as they are unique, it is all good.
I heard there were some development in making search engines [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2007/03/30/ajax-and-search-engine-optmisation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
