<?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>PHPJavascript &#187; Development Guide</title>
	<atom:link href="http://www.phpjavascript.com/category/development-guide/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpjavascript.com</link>
	<description>Web Development Guide - My Personal Library of Tutorials and Scripts</description>
	<lastBuildDate>Tue, 24 Jan 2012 08:08:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Multiple Cron runs remove email notification</title>
		<link>http://www.phpjavascript.com/multiple-cron-runs-remove-email-notification/</link>
		<comments>http://www.phpjavascript.com/multiple-cron-runs-remove-email-notification/#comments</comments>
		<pubDate>Sun, 13 Feb 2011 06:36:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=573</guid>
		<description><![CDATA[I have a website where I am sending around 100,000 thousand newsletters in a week due to which i need cron jobs to run every 5 minutes.
Now a default cron job sends email notification every 5 minutes which is such a headache to avoid this just add the following to your command
/dev/null 2&#62;&#38;1
Example
php /home/rvadmin/public_html/cron.php&#62;/dev/null 2&#62;&#38;1
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/multiple-cron-runs-remove-email-notification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opacity css ie internet explorer issue</title>
		<link>http://www.phpjavascript.com/opacity-css-ie-internet-explorer-issue/</link>
		<comments>http://www.phpjavascript.com/opacity-css-ie-internet-explorer-issue/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 16:46:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>
		<category><![CDATA[Stylesheets]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=535</guid>
		<description><![CDATA[The opacity feature of css does not work on internet explorer IE, to overcome that use filter option.
Eg
.change_opacity {
  opacity: 0.5;
  filter: alpha(opacity = 50);
}

Note: The value of filter is different from opacity

Click here to view the source
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/opacity-css-ie-internet-explorer-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache XAMPP add new website</title>
		<link>http://www.phpjavascript.com/apache-xampp-add-new-site/</link>
		<comments>http://www.phpjavascript.com/apache-xampp-add-new-site/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 17:38:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=522</guid>
		<description><![CDATA[I finally decided to use apache webs server on my local PC instead of IIS (the usual Microsoft gala bala) .. anyways so I got apache XAMPP installed configured and all &#8230; but I realized I did not know how to add a new site, i was googling everywhere but could not find a simple [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/apache-xampp-add-new-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MIGS Online Payment Dubai Middle East</title>
		<link>http://www.phpjavascript.com/migs-online-payment-dubai-middle-east/</link>
		<comments>http://www.phpjavascript.com/migs-online-payment-dubai-middle-east/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 13:58:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>
		<category><![CDATA[Ubercart]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=517</guid>
		<description><![CDATA[Most online payment gateways have issues running in the middle east like paypal etc. So I found the best solution for online payment in the middle east  and  other countries as well to be MIGS.
When I was building an ecommerce application I used drupal with ubercart and uc_migs module for the online payment [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/migs-online-payment-dubai-middle-east/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Disable right click</title>
		<link>http://www.phpjavascript.com/disable-right-click/</link>
		<comments>http://www.phpjavascript.com/disable-right-click/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 09:14:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=483</guid>
		<description><![CDATA[Use jquery to disable right click
Add the following code in the &#60;head&#62; of your webpage
&#60;script type=&#8221;text/javascript&#8221;&#62;
$(document).ready(function(){
$(&#8221;img&#8221;).bind(&#8221;contextmenu&#8221;,function(e){
return false;
});
});
&#60;/script&#62;
I had used this on my drupal site in page.tpl file
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/disable-right-click/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>photoshop serial key or activation code</title>
		<link>http://www.phpjavascript.com/photoshop-serial-key-or-activation-code/</link>
		<comments>http://www.phpjavascript.com/photoshop-serial-key-or-activation-code/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 10:11:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=405</guid>
		<description><![CDATA[Use torrent to download keygen which return generates serial number for your photoshop
I have just discovered the power of torrents, just the solution we need in the recession. Basically download bittorrent it is a software which is basically downloads the pirated movies, the cracks for softwares and other applications. So download and install bittorrent on your [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/photoshop-serial-key-or-activation-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flash catalog or brochure page turning effect</title>
		<link>http://www.phpjavascript.com/flash-catalog-or-brochure-page-turning-effect/</link>
		<comments>http://www.phpjavascript.com/flash-catalog-or-brochure-page-turning-effect/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 10:00:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=402</guid>
		<description><![CDATA[Demo
One my client wanted to have an e-catalog on his website now my flash is real basic so I tried to mimic a e-catalog or book page turning effect using jquery with a tutorial i found on sitepoint. But it wasnt working for me, did not look very professional plus it didn&#8217;t have the required [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/flash-catalog-or-brochure-page-turning-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freelancing Tools &#8211; Online meetings</title>
		<link>http://www.phpjavascript.com/freelancing-tools-online-meetings/</link>
		<comments>http://www.phpjavascript.com/freelancing-tools-online-meetings/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 06:18:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=362</guid>
		<description><![CDATA[Held online meetings, secure screen sharing, remote team working, possible through yuuguu.
It is a dream come true for any freelancer, hidden jewel. Check it for yourself at http://www.yuuguu.com
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/freelancing-tools-online-meetings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE 8 issues detect browser</title>
		<link>http://www.phpjavascript.com/ie-8-issues-detect-browser/</link>
		<comments>http://www.phpjavascript.com/ie-8-issues-detect-browser/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 06:07:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=357</guid>
		<description><![CDATA[IE 8 backward compatibility with IE 7 and browser detection issues.
Our browser detection problems appears to be solved for now but I think there might be issues in the future. Need to know if I am worrying for no reason or there is something here.
Remember our yesterday’s issue with IE8 holding IE7 as developer’s tools. [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/ie-8-issues-detect-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting Web designs</title>
		<link>http://www.phpjavascript.com/interesting-web-designs/</link>
		<comments>http://www.phpjavascript.com/interesting-web-designs/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 06:01:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=351</guid>
		<description><![CDATA[http://greengeckodesign.com/projects/menumatic.aspx
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/interesting-web-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

