<?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>Mon, 28 Feb 2011 23:40:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Restaurant Biller 2.0 Released (Restaurant Online Ordering application)</title>
		<link>http://worcesterwideweb.com/2010/10/19/restaurant-biller-2-0-released-restaurant-online-ordering-application/</link>
		<comments>http://worcesterwideweb.com/2010/10/19/restaurant-biller-2-0-released-restaurant-online-ordering-application/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 12:57:09 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Online Food Ordering]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Technology]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/?p=60</guid>
		<description><![CDATA[Restaurant Biller 2.0 has been released and has moved out of beta, this new release includes features not seen in any online ordering application available on the market. With the help of existing clients recommending features  and the many hours put into to developing the code we have streamlined the whole Restaurant Ordering process. Below [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://restaurantbiller.com">Restaurant Biller 2.0</a> has been released and has moved out of beta, this new release includes features not seen in any online ordering application available on the market. With the help of existing clients recommending features  and the many hours put into to developing the code we have streamlined the whole Restaurant Ordering process. Below are the new  features listed.</p>
<ul>
<li>Product and Category Images</li>
<li>Ability to re-order what you have ordered previously</li>
<li>Category and Product Images</li>
<li>Better templating system</li>
<li>Multi restaurant support with a special page to choose the restaurant you want</li>
<li>Multiple currency support.</li>
<li>Coupon manager</li>
<li>Delivery zone feature which allows you to add zones to each location, you can choose a delivery fee per zone.</li>
<li>Add a tip to the order in checkout by percentage</li>
<li>Billing addresses for users who have different information then the profile information</li>
<li>Categories now have the ability to have a display time (for instance if you would like your breakfast menu only to show up between 7am and 11am</li>
<li>Each restaurant logo can be managed through the config page</li>
<li>Blackout times for when your store is closed (If you are open 9-6  but you stop serving between 12-3)</li>
<li>Minimum order for delivery</li>
<li>Limit delivery area by zip codes</li>
<li>Full reporting and analytics center to show you your revenue, orders, popular products, popular pages, how many orders were delivered and how many orders picked up.</li>
<li>Enhancements to the order manager inside the admin panel, you can now see the order information better and logs more information. One minor set back to this is we removed the ability to set the store into &#8220;no-registration mod&#8221;</li>
<li>Site Document editor</li>
</ul>
<p>That is about it as well as bug fixes and all around usability enhancements.  Check out this exciting new release at <a href="http://restaurantbiller.com/">RestaurantBiller.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2010/10/19/restaurant-biller-2-0-released-restaurant-online-ordering-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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. To get started making mobile friendly pages you can purchase your <a href="http://www.networksolutions.com/domain-name-registration/index.jsp">domain names</a> and hosting by <a href="http://www.networksolutions.com/domain-name-registration/index.jsp">clicking here</a>.</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 />
}</code></p>
<p>if((strpos(strtolower($_SERVER['HTTP_ACCEPT']),&#8217;application/vnd.wap.xhtml+xml&#8217;)&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 />
&#8216;w3c &#8216;,&#8217;acs-&#8217;,'alav&#8217;,'alca&#8217;,'amoi&#8217;,'audi&#8217;,'avan&#8217;,'benq&#8217;,'bird&#8217;,'blac&#8217;,<br />
&#8216;blaz&#8217;,'brew&#8217;,'cell&#8217;,'cldc&#8217;,'cmd-&#8217;,'dang&#8217;,'doco&#8217;,'eric&#8217;,'hipt&#8217;,'inno&#8217;,<br />
&#8216;ipaq&#8217;,'java&#8217;,'jigs&#8217;,'kddi&#8217;,'keji&#8217;,'leno&#8217;,'lg-c&#8217;,'lg-d&#8217;,'lg-g&#8217;,'lge-&#8217;,<br />
&#8216;maui&#8217;,'maxo&#8217;,'midp&#8217;,'mits&#8217;,'mmef&#8217;,'mobi&#8217;,'mot-&#8217;,'moto&#8217;,'mwbp&#8217;,'nec-&#8217;,<br />
&#8216;newt&#8217;,'noki&#8217;,'oper&#8217;,'palm&#8217;,'pana&#8217;,'pant&#8217;,'phil&#8217;,'play&#8217;,'port&#8217;,'prox&#8217;,<br />
&#8216;qwap&#8217;,'sage&#8217;,'sams&#8217;,'sany&#8217;,'sch-&#8217;,'sec-&#8217;,'send&#8217;,'seri&#8217;,'sgh-&#8217;,'shar&#8217;,<br />
&#8216;sie-&#8217;,'siem&#8217;,'smal&#8217;,'smar&#8217;,'sony&#8217;,'sph-&#8217;,'symb&#8217;,'t-mo&#8217;,'teli&#8217;,'tim-&#8217;,<br />
&#8216;tosh&#8217;,'tsm-&#8217;,'upg1&#8242;,&#8217;upsi&#8217;,'vk-v&#8217;,'voda&#8217;,'wap-&#8217;,'wapa&#8217;,'wapi&#8217;,'wapp&#8217;,<br />
&#8216;wapr&#8217;,'webc&#8217;,'winw&#8217;,'winw&#8217;,'xda&#8217;,'xda-&#8217;);</p>
<p>if(in_array($mobile_ua,$mobile_agents)){<br />
$mobile_browser++;<br />
}<br />
if (strpos(strtolower($_SERVER['ALL_HTTP']),&#8217;OperaMini&#8217;)&gt;0) {<br />
$mobile_browser++;<br />
}<br />
if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),&#8217;windows&#8217;)&gt;0) {<br />
$mobile_browser=0;<br />
}</p>
<p>//change this to your mobile friendly page<br />
if($mobile_browser&gt;0){<br />
header( &#8220;Location: http://www.yourwebsite.com/mobile/&#8221; ) ;<br />
} else {<br />
// do something else<br />
}</p>
<p>$ua = $HTTP_USER_AGENT;<br />
if (stristr($ua, &#8220;Windows CE&#8221;) or stristr($ua, &#8220;AvantGo&#8221;) or stristr($ua,<br />
&#8220;Mazingo&#8221;) or stristr($ua, &#8220;Mobile&#8221;) or stristr($ua, &#8220;T68&#8243;) or stristr($ua,<br />
&#8220;Syncalot&#8221;) or stristr($ua, &#8220;Blazer&#8221;) or stristr($ua, &#8220;NetFront&#8221;))<br />
{<br />
$DEVICE_TYPE=&#8221;MOBILE&#8221;;<br />
}</p>
<p>if (isset($DEVICE_TYPE) and $DEVICE_TYPE==&#8221;MOBILE&#8221;)<br />
{<br />
//change this to your mobile friendly page<br />
header( &#8220;Location: http://www.yourwebsite.com/mobile/&#8221; ) ;<br />
exit;<br />
}</p>
<p>?&gt;</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 [...]]]></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 [...]]]></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 [...]]]></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(&#8216;(((f&#124;ht){1}tp://)[-a-zA-Z0-9@:%_+.~#?&#38;//=]+)&#8217;, &#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(&#8216;(((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(&#8216;([[: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(&#8216;([_.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 [...]]]></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>
	</channel>
</rss>

