<?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>Worcester Web Site Development Blog &#187; Anthony</title>
	<atom:link href="http://worcesterwideweb.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://worcesterwideweb.com</link>
	<description>Worcester Web Site Development Blog</description>
	<lastBuildDate>Thu, 25 Jun 2009 19:13:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Redirect mobile users to a mobile friendly page with php</title>
		<link>http://worcesterwideweb.com/2009/06/25/redirect-mobile-users-to-a-mobile-friendly-page-with-php/</link>
		<comments>http://worcesterwideweb.com/2009/06/25/redirect-mobile-users-to-a-mobile-friendly-page-with-php/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 19:11:07 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2009/06/25/redirect-mobile-users-to-a-mobile-friendly-page-with-php/</guid>
		<description><![CDATA[After allot of trial and error I ended up coming up with some code that will redirect users to a mobile friendly page, this method won’t really be useful in about 5 years because modern browsers like safari allow full page viewing but this will get you by until then. Remember this code will have [...]]]></description>
			<content:encoded><![CDATA[<p>After allot of trial and error I ended up coming up with some code that will redirect users to a mobile friendly page, this method won’t really be useful in about 5 years because modern browsers like safari allow full page viewing but this will get you by until then. Remember this code will have to change constantly if you want to stay up to date with the latest hand held devices and mime types.</p>
<p>To get started all you have to do is place the following code in the stop of your php page. If your loading an application you can post this below your application just don’t output any data before the code is executed.</p>
<p><code><br />
<!--p<--></code><code>$mobile_browser = '0';</code><code>if(preg_match('/(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone)/i',<br />
strtolower($_SERVER['HTTP_USER_AGENT']))){<br />
$mobile_browser++;<br />
}</p>
<p>if((strpos(strtolower($_SERVER['HTTP_ACCEPT']),'application/vnd.wap.xhtml+xml')&gt;0) or<br />
((isset($_SERVER['HTTP_X_WAP_PROFILE']) or isset($_SERVER['HTTP_PROFILE'])))){<br />
$mobile_browser++;<br />
}</p>
<p>$mobile_ua = strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,4));<br />
$mobile_agents = array(<br />
'w3c ','acs-','alav','alca','amoi','audi','avan','benq','bird','blac',<br />
'blaz','brew','cell','cldc','cmd-','dang','doco','eric','hipt','inno',<br />
'ipaq','java','jigs','kddi','keji','leno','lg-c','lg-d','lg-g','lge-',<br />
'maui','maxo','midp','mits','mmef','mobi','mot-','moto','mwbp','nec-',<br />
'newt','noki','oper','palm','pana','pant','phil','play','port','prox',<br />
'qwap','sage','sams','sany','sch-','sec-','send','seri','sgh-','shar',<br />
'sie-','siem','smal','smar','sony','sph-','symb','t-mo','teli','tim-',<br />
'tosh','tsm-','upg1','upsi','vk-v','voda','wap-','wapa','wapi','wapp',<br />
'wapr','webc','winw','winw','xda','xda-');</p>
<p>if(in_array($mobile_ua,$mobile_agents)){<br />
$mobile_browser++;<br />
}<br />
if (strpos(strtolower($_SERVER['ALL_HTTP']),'OperaMini')&gt;0) {<br />
$mobile_browser++;<br />
}<br />
if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'windows')&gt;0) {<br />
$mobile_browser=0;<br />
}</p>
<p>//change this to your mobile friendly page<br />
if($mobile_browser&gt;0){<br />
header( "Location: http://www.yourwebsite.com/mobile/" ) ;<br />
} else {<br />
// do something else<br />
}</p>
<p>$ua = $HTTP_USER_AGENT;<br />
if (stristr($ua, "Windows CE") or stristr($ua, "AvantGo") or stristr($ua,<br />
"Mazingo") or stristr($ua, "Mobile") or stristr($ua, "T68") or stristr($ua,<br />
"Syncalot") or stristr($ua, "Blazer") or stristr($ua, "NetFront"))<br />
{<br />
$DEVICE_TYPE="MOBILE";<br />
}</p>
<p>if (isset($DEVICE_TYPE) and $DEVICE_TYPE=="MOBILE")<br />
{<br />
//change this to your mobile friendly page<br />
header( "Location: http://www.yourwebsite.com/mobile/" ) ;<br />
exit;<br />
}</p>
<p>?&gt;</p>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2009/06/25/redirect-mobile-users-to-a-mobile-friendly-page-with-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Added Pizza Builder to Online Ordering Application</title>
		<link>http://worcesterwideweb.com/2009/03/22/added-pizza-builder-to-online-ordering-application/</link>
		<comments>http://worcesterwideweb.com/2009/03/22/added-pizza-builder-to-online-ordering-application/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 19:17:00 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Online Food Ordering]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2009/03/22/added-pizza-builder-to-online-ordering-application/</guid>
		<description><![CDATA[A new feature has been implemented into the pizza builder application, you can now build your own pizza using the new feature. This process has been simplified for ease of use. The pizza builder application is completely configurable in the administration section of the website. The admin section allows you to add different types of [...]]]></description>
			<content:encoded><![CDATA[<p>A new feature has been implemented into the pizza builder application, you can now build your own pizza using the new feature. This process has been simplified for ease of use. The pizza builder application is completely configurable in the administration section of the website. The admin section allows you to add different types of pizza, assign sizes, names, prices, toppings and topping prices. This feature also gives the pizza owner complete details of what the customer ordered.</p>
<p><a href="http://www.restaurantbiller.com/pizza.php">To view a demo of the pizza builder click here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2009/03/22/added-pizza-builder-to-online-ordering-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online food ordering script &#8220;Restaurant Biller&#8221; released with pricing!</title>
		<link>http://worcesterwideweb.com/2009/03/08/online-food-ordering-script-restaurant-biller-released-with-pricing/</link>
		<comments>http://worcesterwideweb.com/2009/03/08/online-food-ordering-script-restaurant-biller-released-with-pricing/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 22:22:16 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Online Food Ordering]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2009/03/08/online-food-ordering-script-restaurant-biller-released-with-pricing/</guid>
		<description><![CDATA[

Easy AJAX powered checkout system
Receive the orders directly through email within 30 seconds of placed order
Easy customization for those who want to modify their site
Set the hours you would like your store open
Turn your store off and on through the administration panel
Enable Credit or disable credit cards
Enable or disable delivery and delivery fees
Modify your home [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://worcesterwideweb.com/2009/03/08/online-food-ordering-script-restaurant-biller-released-with-pricing/restpng/" target="_blank" rel="attachment wp-att-43" title="rest.png"><img src="http://worcesterwideweb.com/wp-content/uploads/2009/03/rest.png" title="rest.png" alt="rest.png" border="0" /></a></p>
<ul>
<li>Easy AJAX powered checkout system</li>
<li>Receive the orders directly through email within 30 seconds of placed order</li>
<li>Easy customization for those who want to modify their site</li>
<li>Set the hours you would like your store open</li>
<li>Turn your store off and on through the administration panel</li>
<li>Enable Credit or disable credit cards</li>
<li>Enable or disable delivery and delivery fees</li>
<li>Modify your home page directly from a control panel</li>
<li>Add Edit and delete categories to your menu</li>
<li>Add Edit and delete menu items with extented features</li>
<li>Each site has a contact us page for customer questions</li>
<li>Edit the hours you would like your online store open</li>
<li>Add an addition cost for delivery, tax prices or order processing fees</li>
<li>Built In newsletter system</li>
<li>Free updates</li>
</ul>
<p><a href="http://restaurantbiller.com/" target="_blank" style="font-size:1.2em">Click here for a demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2009/03/08/online-food-ordering-script-restaurant-biller-released-with-pricing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cubecart Mass (bulk) price changer</title>
		<link>http://worcesterwideweb.com/2009/01/06/cubecart-mass-bulk-price-changer/</link>
		<comments>http://worcesterwideweb.com/2009/01/06/cubecart-mass-bulk-price-changer/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 18:18:11 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Cubecart]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2009/01/06/cubecart-mass-bulk-price-changer/</guid>
		<description><![CDATA[This module will change the product prices of all products or the categories you select. You can pick add/subtract and choose if you would like to use addition/subtraction or percentage.
Features 

Add or subtract an amount or percentage
Preview the changes before making any changes
Choose all products
Choose just a certain category
Complete product price updates painlessly and quick!


Price: [...]]]></description>
			<content:encoded><![CDATA[<p>This module will change the product prices of all products or the categories you select. You can pick add/subtract and choose if you would like to use addition/subtraction or percentage.</p>
<p><strong>Features </strong></p>
<ul>
<li>Add or subtract an amount or percentage</li>
<li>Preview the changes before making any changes</li>
<li>Choose all products</li>
<li>Choose just a certain category</li>
<li>Complete product price updates painlessly and quick!</li>
</ul>
<p><img src="http://worcesterwideweb.com/wp-content/uploads/2009/01/capture.JPG" alt="capture.JPG" /><br />
<strong>Price: $10</strong><br />
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=billing%40worcesterwideweb%2ecom&amp;item_name=Cubecart%20compare&amp;amount=10%2e00&amp;no_shipping=0&amp;no_note=1&amp;currency_code=USD&amp;lc=US&amp;bn=PP%2dBuyNowBF&amp;charset=UTF%2d8" target="_blank"><br />
<img src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2009/01/06/cubecart-mass-bulk-price-changer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax Cubecart custom category order 2.0</title>
		<link>http://worcesterwideweb.com/2008/12/19/ajax-cubecart-custom-category-order-20/</link>
		<comments>http://worcesterwideweb.com/2008/12/19/ajax-cubecart-custom-category-order-20/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 16:48:38 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Cubecart]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2008/12/19/ajax-cubecart-custom-category-order-20/</guid>
		<description><![CDATA[Hi there, here&#8217;s a little Christmas present from me to cubecartforum.org community.
I thought I would make a new post for this considering this is a full rewrite of my original category ordering mod. This version uses ajax for all the work. All you have to do is type the position number into the text box [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there, here&#8217;s a little Christmas present from me to cubecartforum.org community.</p>
<p>I thought I would make a new post for this considering this is a full rewrite of my original category ordering mod. This version uses ajax for all the work. All you have to do is type the position number into the text box and ajax takes care of the rest! Works in real time!</p>
<p><img width="500" src="http://worcesterwideweb.com/wp-content/uploads/2008/12/catsort.jpg" alt="catsort.jpg" /></p>
<p>Click here to download: <a href="http://worcesterwideweb.com/wp-content/uploads/2008/12/categorysorting20.zip" title="category sorting mod">category sorting mod</a></p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2008/12/19/ajax-cubecart-custom-category-order-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Function: Make non linked links clickable</title>
		<link>http://worcesterwideweb.com/2008/12/16/php-function-make-non-linked-links-clickable/</link>
		<comments>http://worcesterwideweb.com/2008/12/16/php-function-make-non-linked-links-clickable/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 19:49:43 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2008/12/16/php-function-make-non-linked-links-clickable/</guid>
		<description><![CDATA[Recently I came across a problem making a twitter plugin. I needed to make links which had no &#8220;a&#8221; tag into links. You can do this progamaticly and here is the solution:
If you are going to use this script please download from here: links.php.txt

Code (php)


function makeClickableLinks($text) {


&#160;


$text = eregi_replace(&#8217;(((f&#124;ht){1}tp://)[-a-zA-Z0-9@:%_+.~#?&#38;//=]+)&#8217;,


&#160;


 &#160; &#160;&#8217;&#60;a href=&#34;1&#34;&#62;1&#60;/a&#62;&#8217;, $text);


&#160;


  $text = eregi_replace(&#8217;([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_+.~#?&#38;//=]+)&#8217;,


&#160;


 &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I came across a problem making a twitter plugin. I needed to make links which had no &#8220;a&#8221; tag into links. You can do this progamaticly and here is the solution:</p>
<p>If you are going to use this script please download from here: <a href="http://worcesterwideweb.com/wp-content/uploads/2008/12/linksphp.txt" title="linksphp.txt">links.php.txt</a></p>
<div class="ch_code_container" style="font-family: monospace;height:300px;">
<div style="">Code (php)</div>
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">function makeClickableLinks($text) {</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$text = eregi_replace(&#8217;(((f|ht){1}tp://)[-a-zA-Z0-9@:%_+.~#?&amp;//=]+)&#8217;,</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp;&#8217;&lt;a href=&quot;1&quot;&gt;1&lt;/a&gt;&#8217;, $text);</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">  $text = eregi_replace(&#8217;([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_+.~#?&amp;//=]+)&#8217;,</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp;&#8217;1&lt;a href=&quot;http://2&quot;&gt;2&lt;/a&gt;&#8217;, $text);</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">  $text = eregi_replace(&#8217;([_.0-9a-z-]+@([0-9a-z][0-9a-z-]+.)+[a-z]{2,3})&#8217;,</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp;&#8217;&lt;a href=&quot;mailto:1&quot;&gt;1&lt;/a&gt;&#8217;, $text);</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">return $text;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">}</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">// Usage</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">// Email address example</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$text = &quot;you@example.com&quot;;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo makeClickableLinks($text);</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo &quot;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&quot;;</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">// URL example</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$text = &quot;http://www.example.com&quot;;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo makeClickableLinks($text);</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo &quot;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&quot;;</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">// FTP URL example</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$text = &quot;ftp://ftp.example.com&quot;;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo makeClickableLinks($text);</div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2008/12/16/php-function-make-non-linked-links-clickable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cubecart product compare mod</title>
		<link>http://worcesterwideweb.com/2008/12/15/cubecart-product-compare-mod/</link>
		<comments>http://worcesterwideweb.com/2008/12/15/cubecart-product-compare-mod/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 13:53:39 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Cubecart]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2008/12/15/cubecart-product-compare-mod/</guid>
		<description><![CDATA[Cubecart product compare mod allows customers to compare 2 or more products, the customer can see the price,description, image, name and weight. The Cubecart product compare mod also makes it simple to add new fields to the compare mod. For instance if you own a computer shop you can add some custom fields to the [...]]]></description>
			<content:encoded><![CDATA[<p>Cubecart product compare mod allows customers to compare 2 or more products, the customer can see the price,description, image, name and weight. The Cubecart product compare mod also makes it simple to add new fields to the compare mod. For instance if you own a computer shop you can add some custom fields to the inventory table and compare those items on the compare page by just drawing the variable. With a simple installation this mod is a sure win for your cubecart installation.</p>
<p>Price: $15<br />
License: unlimited domain<br />
Demo: <a href="http://worcesterwideweb.com/store/index.php?act=viewCat&amp;catId=1" target="_blank">http://worcesterwideweb.com/store/index.php?act=viewCat&amp;catId=1</a></p>
<p><img src="http://worcesterwideweb.com/wp-content/uploads/2008/12/compare.jpg" alt="compare.jpg" /></p>
<p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=billing%40worcesterwideweb%2ecom&amp;item_name=Cubecart%20compare&amp;amount=15%2e00&amp;no_shipping=0&amp;no_note=1&amp;currency_code=USD&amp;lc=US&amp;bn=PP%2dBuyNowBF&amp;charset=UTF%2d8" target="_blank"><br />
<img src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2008/12/15/cubecart-product-compare-mod/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Restaurant Online Ordering System Beta available!</title>
		<link>http://worcesterwideweb.com/2008/12/07/restaurant-online-ordering-system-beta-available/</link>
		<comments>http://worcesterwideweb.com/2008/12/07/restaurant-online-ordering-system-beta-available/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 20:43:17 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Online Food Ordering]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Technology]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2008/12/07/restaurant-online-ordering-system-beta-available/</guid>
		<description><![CDATA[The Restaurant Biller application is now available! With the features  listed below and the low price it costs to use this application its a sure hit for small business restaurants world wide. Here are the features the Restaurant Biller boasts:
The online restaurant ordering system for small to large businesses. More and more people are going online [...]]]></description>
			<content:encoded><![CDATA[<p>The Restaurant Biller application is now available! With the features  listed below and the low price it costs to use this application its a sure hit for small business restaurants world wide. Here are the features the <a href="http://www.restaurantbiller.com">Restaurant Biller </a>boasts:</p>
<blockquote><p>The online restaurant ordering system for small to large businesses. More and more people are going online to search for food in their area rather then using the yellow pages. Restaurant Biller© created an online solution for those restaurants to have an online menu where customers can place orders. This application is very powerful and easy to use with features allowing you to easily control every aspect of your website. Listed below are some of the features included in this application.</p>
<ul>
<li>Easy AJAX powered checkout system</li>
<li>Receive the orders directly through email within 30 seconds of placed order</li>
<li>Easy customization for those who want to modify their site</li>
<li>Modify your home page directly from a control panel</li>
<li>Add Edit and delete categories to your menu</li>
<li>Add Edit and delete menu items with extented features</li>
<li>Each site has a contact us page for customer questions</li>
<li>Edit the hours you would like your online store open</li>
<li>Add an addition cost for delivery, tax prices or order processing fees</li>
<li>Free updates</li>
</ul>
</blockquote>
<p><a href="http://restaurantbiller.com/" target="_blank">Click here to view the demo and website</a><br />
or<br />
<a href="http://worcesterwideweb.com/contact/">Click here to enquire about getting setup on this system</a></p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2008/12/07/restaurant-online-ordering-system-beta-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cubecart Catalog mod available for CC4</title>
		<link>http://worcesterwideweb.com/2008/12/07/cubecart-catalog-mod-available-for-cc4/</link>
		<comments>http://worcesterwideweb.com/2008/12/07/cubecart-catalog-mod-available-for-cc4/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 20:37:33 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Cubecart]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2008/12/07/cubecart-catalog-mod-available-for-cc4/</guid>
		<description><![CDATA[The Cubecart Catalog mod is now available for Cubecart 4. This mod has exactly the same features seen in CC3 but just now supports the new file system. The mode is available for purchase here:


]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://worcesterwideweb.com/2008/05/02/cubecart-catalog-pdf-mod/">Cubecart Catalog mod </a>is now available for Cubecart 4. This mod has exactly the same features seen in CC3 but just now supports the new file system. The mode is available for purchase here:</p>
<p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=billing%40worcesterwideweb%2ecom&amp;item_name=Cubecart%20pdf%20catalog&amp;amount=30%2e00&amp;no_shipping=0&amp;no_note=1&amp;currency_code=USD&amp;lc=US&amp;bn=PP%2dBuyNowBF&amp;charset=UTF%2d8" target="_blank"><br />
<img src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2008/12/07/cubecart-catalog-mod-available-for-cc4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restaurant Online Ordering System</title>
		<link>http://worcesterwideweb.com/2008/09/29/restaurant-online-ordering-system/</link>
		<comments>http://worcesterwideweb.com/2008/09/29/restaurant-online-ordering-system/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 22:49:33 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Online Food Ordering]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2008/09/29/restaurant-online-ordering-system/</guid>
		<description><![CDATA[I started development on a new exciting project, I will be making a restaurant ordering system. That will be simple to use and cost effective for local restaurants to use. Right now I am still developing this application and adding new features everyday. Some of the features the Restaurant Online Ordering system will be:

Template based [...]]]></description>
			<content:encoded><![CDATA[<p>I started development on a new exciting project, I will be making a restaurant ordering system. That will be simple to use and cost effective for local restaurants to use. Right now I am still developing this application and adding new features everyday. Some of the features the Restaurant Online Ordering system will be:</p>
<ul>
<li>Template based system for easy ordering</li>
<li>Pay by credit card (with 3rd party processing of course)</li>
<li>Pay by paypal</li>
<li>Pay at store (pickup)</li>
<li>Administration panel for adding/editing/delete categories</li>
<li>Administration panel for adding/editing/deleting products</li>
<li>Secure online ordering using SSL</li>
<li>AJAX ordering system for faster loading</li>
<li>Built in page manager</li>
<li>Customer Order database</li>
<li>Print directly on printer (Order goes directly from website to printer within 1 minute) *PC in restaurant required</li>
</ul>
<p>More features to come soon, check back soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2008/09/29/restaurant-online-ordering-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
