<?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>WebTecker the latest Web Trends, Resources and News. &#187; PHP</title>
	<atom:link href="http://webtecker.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://webtecker.com</link>
	<description>Web Resources and Trends</description>
	<lastBuildDate>Wed, 27 Jul 2011 05:44:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>How to Pipe / Send an Email to a PHP Script</title>
		<link>http://webtecker.com/2010/12/08/how-to-pipe-send-an-email-to-a-php-script/</link>
		<comments>http://webtecker.com/2010/12/08/how-to-pipe-send-an-email-to-a-php-script/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 20:52:26 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://webtecker.com/?p=499</guid>
		<description><![CDATA[Sending an email to a PHP script (also called pipe), is a fairly simple task to accomplish. You first need to setup a PHP file and then you will setup pipe forwarding in cPanel.  This tutorial is only the basics and is using cPanel to setup the actual pipe. Alright let us get started with [...]]]></description>
			<content:encoded><![CDATA[<p>Sending an email to a PHP  script (also called pipe), is a fairly simple task to accomplish. You first  need to setup a PHP file and then you will setup pipe forwarding in  cPanel.  This tutorial is only the basics  and is using cPanel to setup the actual pipe. Alright let us get started with  the PHP file.</p>
<ol>
<li>The very first line of the PHP script  is a <a href="http://en.wikipedia.org/wiki/Shebang_(Unix)">hashbang</a> (also called shebang). This is a  special line which identifies the file as a PHP script and specifies  the path to the PHP binary. In most cases it should look like  this:

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/usr/bin/php –q</span></pre></td></tr></table></div>

<p>But on some occasions this just  won’t work.  If it doesn’t you either  have to change the path to the PHP binary or you need to use the following:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/usr/bin/php-cli –q</span></pre></td></tr></table></div>

<p><em> </em><em> </em>What this does is runs the PHP binary from the Command Line (cli = command line interface).</p>
<p><strong>Notes:</strong> Make sure that there are no whitespaces or  blank lines before the above line as this will be sent to the mail server,  which will result in a bounced message. The <strong>–q</strong> option  instructs PHP not to print its version either, since this will also result in a  bounced message.</li>
<li>Now that we have the first line done, we need to get  the emails content.  This is accomplished  using the following code below:

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'php://stdin'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>The script itself will grab the emails content using <em>file_get_contents</em> on <strong>php://stdin</strong> which is where the email  is temporarily stored. You can then manipulate it using such functions as <strong>preg_match</strong> to grab the parts you want.</li>
<li>Now to put entire the PHP script together.  See the code below:

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">#!/usr/bin/php –q
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$emailContent</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;php://stdin&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">mail</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'email@yoursite.com'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'Email Pipe Works!'</span><span style="color: #339933;">,</span>  <span style="color: #000088;">$emailContent</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>As you can tell this is just a very simple script that gets the email contents  and just sends it back to you.  It just  lets you know if it was successful.</li>
<li>Now upload  the PHP file to your site and make sure that the  script permissions are set correctly. In most cases, you would simply need to  change the permissions, either via your cPanel FileManager or an FTP client and  set them to 755. This will make the script executable.
<ol>
<li>Now on to  setting up the pipe forwarding (sending an email to our PHP script), follow the  steps below:</li>
<li>Log in to your  cPanel.</li>
<li>Click on the <a href="http://webtecker.com/wp-content/uploads/2010/12/forwarders.jpg"><img class="alignnone size-full wp-image-500" title="forwarders" src="http://webtecker.com/wp-content/uploads/2010/12/forwarders.jpg" alt="forwarders" width="63" height="47" /></a>“<strong>Forwarders</strong>” icon, under the “<strong>Mail</strong>” tab.</li>
<li>Click on the “<strong>Add Forwarder</strong>” button.</li>
<li>Fill in “<strong>Address to Forward</strong>” and put the mail  address you would like to pipe the messages from.</li>
<li>Select “<strong>Pipe to a Program</strong>” and fill in the <em>full path</em> to the PHP script which will  handle the messages.  Luckily in cPanel  11 makes this easy because it automatically puts you in your home directory. So  all you need to do is just add a relative path. <a href="http://webtecker.com/wp-content/uploads/2010/12/cpanel-add-forwarder.jpg" target="_blank">Click here to see the cPanel  image</a>.</li>
</ol>
</li>
</ol>
<p>I hope that this tutorial has helped you.  If you have any questions please comment  below.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=499&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2010/12/08/how-to-pipe-send-an-email-to-a-php-script/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Programing Cheat Sheets</title>
		<link>http://webtecker.com/2008/04/14/programing-cheat-sheets/</link>
		<comments>http://webtecker.com/2008/04/14/programing-cheat-sheets/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 03:27:27 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://webtecker.com/?p=185</guid>
		<description><![CDATA[After learning a few programing languages it gets hard remembering all of the functions and properties that programing languages come with. Below is a list of Cheat sheets to make your coding experience much easier and faster. The list is categorized by languages. ActionScript ActionScript Cheat Sheet &#8211; Covers everything from ActionScript 2.0 to ActionScript [...]]]></description>
			<content:encoded><![CDATA[<p>After learning a few programing languages it gets hard remembering all of the functions and properties that programing languages come with.  Below is a list of Cheat sheets to make your coding experience much easier and faster.  The list is categorized by languages.</p>
<h3>ActionScript</h3>
<ul>
<li><a title="ActionScript Cheat Sheet" href="http://actionscriptcheatsheet.com/blog/quick-referencecheatsheet-for-actionscript-20" target="_blank"><strong>ActionScript Cheat Sheet</strong></a> &#8211; Covers everything from ActionScript 2.0 to ActionScript 3.0 and Even Adobe AIR.</li>
</ul>
<h3>Ajax/JavaScript Frameworks</h3>
<ul>
<li><strong><a title="Prototype Cheat Sheet" href="http://www.snook.ca/archives/javascript/prototype_1_5_0_cheatsheet/" target="_blank">Prototype Cheat Sheet</a></strong> &#8211; Detailed methods and properties of each of the modules within the Prototype JavaScript library.</li>
<li><a href="http://slash7.com/cheats/scriptaculous_fx1.pdf"><strong>Scriptaculous Cheat Sheet</strong></a> &#8211; List of the Effects.</li>
<li><a title="MooTools Cheat Sheet" href="http://mediavrog.net/blog/2007/06/15/mootools/mootools-cheat-sheet/" target="_blank"><strong>MooTools Cheat Sheet</strong></a> &#8211; Details of the MooTools Library.</li>
<li><strong><a title="jQuery Cheat Sheet" href="http://www.gscottolson.com/weblog/2008/01/11/jquery-cheat-sheet/" target="_blank">jQuery Cheat Sheet</a></strong> &#8211; Details of the jQuery Library version 1.2.x.</li>
<li><a title="YUI Cheat Sheet" href="http://developer.yahoo.com/yui/" target="_blank"><strong>YUI Cheat Sheet</strong></a> &#8211; This cheat sheet is straight from Yahoo and the download link is at the bottom of the page or you can download the zip file <a title="Cheat Sheet" href="http://developer.yahoo.com/yui/docs/assets/cheatsheets.zip" target="_blank">here</a>.</li>
</ul>
<h3>ASP</h3>
<ul>
<li><a title="ASP/VBScript Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/asp-vbscript-cheat-sheet/" target="_blank"><strong>ASP/VBScript Cheat Sheet</strong></a> &#8211; Everything you want or need to know about ASP and VBScript.</li>
</ul>
<h3>CSS</h3>
<ul>
<li><strong><a href="http://refcards.com/docs/deepx/css1/CSS1.pdf" target="_blank">CSS level 1</a></strong> &#8211; Includes Fonts, Backgrounds, Text, Box, and Units</li>
<li><strong><a href="http://refcards.com/docs/jungb/css2/css2.pdf" target="_blank">CSS level 2</a></strong> &#8211; Includes Box Model, Print, Fonts, Visual Effects, Pseudo Classes and Elements.</li>
<li><strong><a href="http://www.veign.com/downloads/guides/qrg0007.pdf" target="_blank">CSS 2 Quick Reference Guide </a></strong> &#8211; Shows you examples on how to use a wide variety of classes</li>
<li><strong><a title="CSS Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/css-cheat-sheet/" target="_blank">CSS Cheat Sheet </a></strong> &#8211; Lists all selectors (as of CSS 2.1) and properties.</li>
<li><strong><a href="http://www.blooberry.com/indexdot/css/propindex/all.htm" target="_blank">CSS Property Index</a></strong> &#8211; Lists all CSS Properties Alphabetically</li>
<li><strong><a href="http://www.dustindiaz.com/css-shorthand/" target="_blank">CSS Shorthand Guide</a></strong> &#8211; A fairly detailed guide of CSS Shorthand properties</li>
</ul>
<h3>C# and VB.NET</h3>
<ul>
<li><strong><a href="http://aspalliance.com/625" target="_blank">C# and VB.NET Comparison Cheat Sheet</a></strong> &#8211; Cheat sheet that highlights some key syntactical differences between C# and VB.NET.</li>
<li><strong><a title="C# Basic Reference Sheet" href="http://www.dreamincode.net/downloads/ref_sheets/csharp_basics_reference_sheet.pdf" target="_blank">C# Basic Reference Sheet</a></strong> &#8211; A Brief Cheat sheet to give you the basics of C#.</li>
<li><a title="VB.NET Basic Reference Sheet" href="http://www.dreamincode.net/downloads/ref_sheets/vbnet_basics_reference_sheet.pdf" target="_blank"><strong>VB.NET Basic Reference Sheet</strong></a> &#8211; A Brief Cheat sheet to give you the basics of VB.NET.</li>
</ul>
<h3>C++</h3>
<ul>
<li><strong><a href="http://www.linuxsoftware.co.nz/cppcontainers.html" target="_blank">C++ Cheat Sheet</a></strong> &#8211; This Cheat Sheet shows a list of C++ Containers</li>
<li><strong><a href="http://downloads.dreamincode.net/ref_sheets/cpp_reference_sheet.pdf" target="_blank">C++ Quick Reference Sheet</a></strong> &#8211; Is a Basic Cheat Sheet that doesn&#8217;t go that in depth.</li>
</ul>
<h3>JavaScript</h3>
<ul>
<li><strong><a title="JavaScript Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/javascript-cheat-sheet/" target="_blank">JavaScript Cheat Sheet </a></strong> &#8211;  		The JavaScript cheat sheet is designed to act as a reminder and reference sheet, listing methods and functions of JavaScript.</li>
<li><strong><a title="JavaScript Quick Reference" href="http://www.dannyg.com/ref/jsquickref.html" target="_blank">JavaScript Quick Reference</a></strong> &#8211; Consists of the JavaScript and Browser Objects Quick Reference.</li>
<li><a href="http://www.visibone.com/regular-expressions/"><strong>Regular Expressions for JavaSript</strong></a> &#8211;  Excerpts of the VisiBone JavaScript references</li>
</ul>
<h3>SQL</h3>
<ul>
<li><a title="SQL Cheat Sheet" href="http://www.3gwt.net/demo/SQL_redux.html" target="_blank"><strong>SQL Cheat Sheet</strong></a> &#8211; A very Basic SQL Cheat sheet but gives you all the necessary data.</li>
<li><a title="SQL Server Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/sql-server-cheat-sheet/" target="_blank"><strong>SQL Server Cheat Sheet</strong></a> &#8211; Cheat Sheet to Microsoft&#8217;s SQL Server.</li>
<li><a title="MySQL Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/mysql-cheat-sheet/" target="_blank"><strong>MySQL Cheat Sheet</strong></a> &#8211;  A quick reference guide for MySQL, including functions (both in MySQL and PHP), data types, and sample queries.</li>
</ul>
<h3>PHP</h3>
<ul>
<li><strong><a title="PHP Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/php-cheat-sheet/" target="_blank">PHP Cheat Sheet</a></strong> &#8211; This is an in depth cheat sheet for PHP.</li>
<li><a title="PHP Reference Sheet" href="http://www.dreamincode.net/downloads/ref_sheets/php_reference_sheet.pdf" target="_blank"><strong>PHP Reference Sheet</strong></a> &#8211; This Sheet gives you basic functions for PHP but useful.</li>
</ul>
<p>If you have any more to add to this list than please comment below.  Also if you would like other languages added please comment below</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=185&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/04/14/programing-cheat-sheets/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>Open-source Newsletter Manager</title>
		<link>http://webtecker.com/2008/03/24/open-source-newsletter-manager/</link>
		<comments>http://webtecker.com/2008/03/24/open-source-newsletter-manager/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 19:20:43 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Newsletter Management]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/03/24/open-source-newsletter-manager/</guid>
		<description><![CDATA[phplist is an open source newsletter management software that makes sending newsletters easy, professional and controllable. phplist is written in PHP and mySql and it is completely Free. It allows for tracking clicks, subscription management, and it allows you to easily import you clients from your own database. It has saved me so much time [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.phplist.com/" target="_blank"><strong>phplist</strong></a> is an open source newsletter management software that makes sending newsletters easy, professional and controllable. phplist is written in PHP and mySql and it is completely <strong>Free. </strong>It allows for tracking clicks, subscription management, and it allows you to easily import you clients from your own database.  It has saved me so much time when managing our newsletter and our subscribers.</p>
<p><a href="http://www.phplist.com/" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/03/free-newsletter-manager.gif" border="0" alt="phplist" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=132&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/03/24/open-source-newsletter-manager/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>List of Image Cropping Scripts</title>
		<link>http://webtecker.com/2008/03/14/list-of-image-cropping-scripts/</link>
		<comments>http://webtecker.com/2008/03/14/list-of-image-cropping-scripts/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 18:59:31 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[image cropping script]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Scriptaculous]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/03/14/list-of-image-cropping-scripts/</guid>
		<description><![CDATA[Updated March 24 After looking for awhile for a script that will crop your image in the browser I decided to put a list together. I found various types of scripts that will accomplish this. The list below is a list of image cropping scripts. cfImageCropper &#8211; This script is written in Coldfusion. The Demo [...]]]></description>
			<content:encoded><![CDATA[<p><em>Updated March 24</em></p>
<p>After looking for awhile for a script that will crop your image in the browser I decided to put a list together.  I found various types of scripts that will accomplish this.  The list below is a list of image cropping scripts.</p>
<ol>
<li><a href="http://cfimagecropper.riaforge.org/" title="cfImageCropper" target="_blank"><strong>cfImageCropper</strong></a> &#8211; This script is written in Coldfusion.  The Demo of this script works very well and the code is very simple to implement.</li>
<li><strong><a href="http://www.defusion.org.uk/code/javascript-image-cropper-ui-using-prototype-scriptaculous/" title="jsCropper" target="_blank">jsCropper</a></strong> &#8211; This javascript image cropping script is based on the <a href="http://prototype.conio.net/">Prototype JavaScript framework</a> and <a href="http://script.aculo.us/">script.aculo.us</a>.  jsCropper is one of my favorite copping script.  It is very easy to use and its a great unobtrusive script.  jsCropper has tons of great features you should check it out.</li>
<li><a href="http://www.artviper.net/crop.php" title="mooImageCrop" target="_blank"><strong>mooImageCrop</strong></a> &#8211; mooImageCrop is based on the mootools framework and php.  It is very easy to implement.</li>
<li><strong><a href="http://www.dhtmlgoodies.com/index.html?whichScript=image-crop" title="Image Crop" target="_blank">Image Crop</a></strong> &#8211; This is a great script written in Javascript and PHP.  It requires the install of ImageMagick server component.</li>
<li><strong><a href="http://www.ajaxprogrammer.com/?p=9" title="Ajax Image editor" target="_blank">Ajax Image Editor</a></strong> &#8211; Is a very powerful image editor script that allows you to crop, resize, and rotate the image.  It is fairly easy to implement and it isn&#8217;t written with any frameworks.</li>
<li><strong><a href="http://www.sephiroth.it/file_detail.php?pageNum_comments=10&amp;id=109#" title="Flash Image Crop" target="_blank">Flash Image Crop</a></strong> &#8211; Is a very nice flash image crop tool written in Actionscript and PHP.  The only problem I have with this script is that you have to use the space bar to accept the cropped area and not the enter key.  But overall it works very well.</li>
<li><strong><a href="http://flashrocket.worldoptimizer.com/article/23/flash-based-cropping-tool-released-lgpl" title="Flash Based Cropping too" target="_blank">Flash Based Cropping tool</a></strong> &#8211; This tool is also written in Actionscript and PHP is a very nice script.  You can also resize the image with this script.</li>
<li><a href="http://www.nwhite.net/MooCrop/" title="MooCrop" target="_blank"><strong>MooCrop</strong></a> -MooCrop is an Image Cropping utility that uses <a href="http://www.mootools.net/">mootools</a> javascript framework.  MooCrop works very fast and you can even edit the color of the mask.</li>
</ol>
<p>As more cropping tools become available I will be adding to this list.  If you have more to add now then please comment below.</p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=111&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/03/14/list-of-image-cropping-scripts/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Speed up your website with PHP Speedy.</title>
		<link>http://webtecker.com/2008/03/07/speed-up-your-website-with-php-speedy/</link>
		<comments>http://webtecker.com/2008/03/07/speed-up-your-website-with-php-speedy/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 19:57:05 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Website Optimization]]></category>
		<category><![CDATA[WP-Plugin]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/03/07/speed-up-your-website-with-php-speedy/</guid>
		<description><![CDATA[PHP Speedy is a script that you can install on your web server to automatically speed up the download time of your web pages. If this works like it says this should be a standard upgrade to all websites.  There is also a PHP Speedy WP Plugin to speed up your wordpress site. I have [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://aciddrop.com/php-speedy/" title="PHP Speedy" target="_blank">PHP Speedy</a> is a script that you can install on your web server to automatically speed up the download time of your web pages. If this works like it says this should be a standard upgrade to all websites.  There is also a <a href="http://aciddrop.com/2008/03/07/php-speedy-wordpress-plugin-preview-release/" title="PHP Speedy wp plugin" target="_blank">PHP Speedy WP Plugin</a> to speed up your wordpress site.  I have yet to install the PHP Speedy Plugin but I will in a few days and I&#8217;ll give you an update.</p>
<p><a href="http://aciddrop.com/php-speedy/" title="PHP Speedy" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/03/php_speedy_logo_medium.gif" alt="PHP Speedy" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=103&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/03/07/speed-up-your-website-with-php-speedy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Flash Charting Component</title>
		<link>http://webtecker.com/2008/02/22/free-flash-charting-component/</link>
		<comments>http://webtecker.com/2008/02/22/free-flash-charting-component/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 18:48:04 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Charts]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/22/free-flash-charting-component/</guid>
		<description><![CDATA[Open Flash Chart is a great free Flash Chart. It is fairly easy to setup and is currently written in PHP, Perl, Python, Java, Ruby on Rails, and .Net. Yes it is in flash but for dynamic database driven data you can use the languages it is written in. If you don&#8217;t want database driven [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://teethgrinder.co.uk/open-flash-chart/" title="Open Flash Chart" target="_blank">Open Flash Chart</a> is a great free Flash Chart. It is fairly easy to setup and is currently written in PHP, Perl, Python, Java, Ruby on Rails, and .Net. Yes it is in flash but for dynamic database driven data you can use the languages it is written in. If you don&#8217;t want database driven data then you can use a .txt file. I highly recommend this Chart component for your site.</p>
<p><a href="http://teethgrinder.co.uk/open-flash-chart/" title="Open Flash Chart" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/open-flash-chart1.png" alt="Open Flash Chart" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=77&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/22/free-flash-charting-component/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Free Customer Support Help Desk Software</title>
		<link>http://webtecker.com/2008/02/21/free-customer-support-help-desk-software/</link>
		<comments>http://webtecker.com/2008/02/21/free-customer-support-help-desk-software/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 19:27:52 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Support Desk]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/21/free-customer-support-help-desk-software/</guid>
		<description><![CDATA[If you are lacking in customer service or on your website then Trellis Desk is for you. Trellis Desk is a free powerful, feature-rich help desk software which helps increasing the quality of support given to your customers. Your customers will be able to submit Support Tickets and view the knowledgebase. This great software is [...]]]></description>
			<content:encoded><![CDATA[<p>If you are lacking in  customer service or on your website then Trellis Desk is for you.  <a href="http://www.accord5.com/trellis" target="_blank">Trellis Desk</a> is a free powerful, feature-rich help desk software which helps increasing the quality of support given to your customers.  Your customers will be able to submit Support Tickets and view the knowledgebase. This great software is completely free. Trellis Desk is written in PHP.</p>
<p>Trellis Desk can cover all your support system with the following features:</p>
<ul>
<li>Support Tickets</li>
<li>Canned ticket responses</li>
<li>Ticket escalation and assignment</li>
<li>Built-in knowledgebase</li>
<li>Email notifications</li>
<li>Ticket Moderation features</li>
</ul>
<p><a href="http://www.accord5.com/trellis" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/product_trellis.jpg" alt="Trellis Desk" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=70&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/21/free-customer-support-help-desk-software/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Live Screen Capture Image</title>
		<link>http://webtecker.com/2008/02/11/live-screen-capture-image/</link>
		<comments>http://webtecker.com/2008/02/11/live-screen-capture-image/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 03:12:30 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/11/live-screen-capture-image/</guid>
		<description><![CDATA[If you haven&#8217;t heard of ThumbnailsPro then this is a great free script. All you need to do is add the code below and replace the http://yoururl.com in the image source code. It does take some time till the screenshot is processed, since it is a free service, but they do offer a subscription without [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t heard of <a href="http://thumbnailspro.com/" title="Thubnails Pro" target="_blank">ThumbnailsPro</a> then this is a great free script.  All you need to do is add the code below and replace the http://yoururl.com in the image source code.  It does take some time till the screenshot is processed, since it is a free service, but they do offer a subscription without the wait.</p>
<p>&lt;img src=&#8221;http://thumbnailspro.com/thumb.php?url=http://yoururl.com&amp;S=150&#8243; border=&#8221;0&#8243; alt=&#8221;website screenshots&#8221;&gt;</p>
<p><a href="http://thumbnailspro.com" title="website screenshots"></a></p>
<p style="text-align: center"><a href="http://thumbnailspro.com" title="website screenshots"><img src="http://thumbnailspro.com/thumb.php?url=http://webtecker.com&amp;S=150" alt="Webtecker" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=35&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/11/live-screen-capture-image/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Visual heatmap of clicks on a HTML page</title>
		<link>http://webtecker.com/2008/02/08/visual-heatmap-of-clicks-on-a-html-page/</link>
		<comments>http://webtecker.com/2008/02/08/visual-heatmap-of-clicks-on-a-html-page/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 19:17:35 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://webtecker.com/2008/02/08/visual-heatmap-of-clicks-on-a-html-page/</guid>
		<description><![CDATA[If you ever wanted to see where visitors are clicking on your website then ClickHeat is for you. This is a very cool script that shows hot and cold click zones. Requires Javascript on the client to track clicks, PHP and GD on the server to log clicks and generate the heatmap. It is very [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever wanted to see where visitors are clicking on your website then <a href="http://www.labsmedia.com/clickheat/index.html" title="ClickHeat" target="_blank">ClickHeat</a> is for you.  This is a very cool script that shows hot and cold click zones. Requires Javascript on the client to track clicks, PHP and GD on the server to log clicks and generate the heatmap.  It is very easy to install and I recommend it to everyone.  This script will help you optimize your site or page to allow for greater usability and monetization.</p>
<p style="text-align: center"><a href="http://www.labsmedia.com/clickheat/index.html" title="ClickHeat" target="_blank"><img src="http://webtecker.com/wp-content/uploads/2008/02/heatmap.gif" alt="HeatMap" border="0" /></a></p>
<img src="http://webtecker.com/?ak_action=api_record_view&id=26&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://webtecker.com/2008/02/08/visual-heatmap-of-clicks-on-a-html-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

