<?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>Website Ideas &#187; Website Scripts</title>
	<atom:link href="http://www.website-ideas.co.uk/category/website-scripts/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.website-ideas.co.uk</link>
	<description>All the design inspiration you will need</description>
	<lastBuildDate>Sat, 12 Nov 2011 06:54:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Useful PHP Snippets</title>
		<link>http://www.website-ideas.co.uk/2011/07/01/useful-php-snippets/</link>
		<comments>http://www.website-ideas.co.uk/2011/07/01/useful-php-snippets/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 18:49:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website Scripts]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=921</guid>
		<description><![CDATA[As a PHP developer i&#8217;m always in the search for little snippets to add to my library. This at times so often proves useful when coding big projects and quick little functions. Snippets as such are great to add to existing CMS systems, such as WordPress, drupal or Joomla. Calculate distances in PHP I used this on an accommodation website not to long ago. this snippet allows you to measure the distance from one point to another. Great combo with Google maps too! function distance($lat1, $lon1, $lat2, $lon2, $unit) { $theta = $lon1 - $lon2; $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + &#160;cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta)); $dist = acos($dist); $dist = rad2deg($dist); $miles = $dist * 60 * 1.1515; $unit = strtoupper($unit); &#160;if ($unit == &#34;K&#34;) { return ($miles * 1.609344); } else if ($unit == &#34;N&#34;) { return ($miles * 0.8684); } else { return $miles; } } Force file download This allows you to force file downloads such as mp3 and other files being played in browsers. function downloadFile($file){ $file_name = $file; $mime = 'application/force-download'; header('Pragma: public'); &#160; // required header('Expires: 0'); &#160; &#160; &#160; // no cache header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Cache-Control: private',false); header('Content-Type: '.$mime); header('Content-Disposition: attachment;... ]]></description>
			<content:encoded><![CDATA[<p>As a PHP developer i&#8217;m always in the search for little snippets to add to my library. This at times so often proves useful when coding big projects and quick little functions. Snippets as such are great to add to existing CMS systems, such as <a href="http://www.website-ideas.co.uk/category/wordpress/">WordPress</a>, drupal or <a href="http://www.website-ideas.co.uk/category/joomla/">Joomla</a>.</p>
<h2>Calculate distances in PHP</h2>
<p>I used this on an accommodation website not to long ago. this snippet allows you to measure the distance from one point to another. Great combo with Google maps too!</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">function distance($lat1, $lon1, $lat2, $lon2, $unit) {</div></div>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$theta = $lon1 - $lon2;<br />
$dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + &nbsp;cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta));<br />
$dist = acos($dist);<br />
$dist = rad2deg($dist);<br />
$miles = $dist * 60 * 1.1515;<br />
$unit = strtoupper($unit);</div></div>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp;if ($unit == &quot;K&quot;) {<br />
return ($miles * 1.609344);<br />
} else if ($unit == &quot;N&quot;) {<br />
return ($miles * 0.8684);<br />
} else {<br />
return $miles;<br />
}<br />
}</div></div>
<h2>Force file download</h2>
<p>This allows you to force file downloads such as mp3 and other files being played in browsers.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">function downloadFile($file){<br />
$file_name = $file;<br />
$mime = 'application/force-download';<br />
header('Pragma: public'); &nbsp; // required<br />
header('Expires: 0'); &nbsp; &nbsp; &nbsp; // no cache<br />
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');<br />
header('Cache-Control: private',false);<br />
header('Content-Type: '.$mime);<br />
header('Content-Disposition: attachment; filename=&quot;'.basename($file_name).'&quot;');<br />
header('Content-Transfer-Encoding: binary');<br />
header('Connection: close');<br />
readfile($file_name); &nbsp; &nbsp; &nbsp; // push it out<br />
exit();<br />
}</div></div>
<h2>Get latitude and longitude from an address</h2>
<p>This is a great snippet and goes well with the first one i mentioned. This allows you grab the latitude and longitude from the Google map url and returning the values as an array!</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">function getLatLong($address){<br />
if (!is_string($address))die(&quot;All Addresses must be passed as a string&quot;);<br />
$_url = sprintf('http://maps.google.com/maps?output=js&amp;amp;q=%s',rawurlencode($address));<br />
$_result = false;<br />
if($_result = file_get_contents($_url)) {<br />
if(strpos($_result,'errortips') &amp;gt; 1 || strpos($_result,'Did you mean:') !== false) return false;<br />
preg_match('!center:\s*{lat:\s*(-?\d+\.\d+),lng:\s*(-?\d+\.\d+)}!U', $_result, $_match);<br />
$_coords['lat'] = $_match[1];<br />
$_coords['long'] = $_match[2];<br />
}<br />
return $_coords;<br />
}</div></div>
<h2>Get how many times a page have been retweeted using PHP</h2>
<p>This snippet will return the number of tweets that a page was tweeted. Using the tweetmeme API</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">function tweetCount($url) {<br />
$content = file_get_contents(&quot;http://api.tweetmeme.com/url_info?url=&quot;.$url);<br />
$element = new SimpleXmlElement($content);<br />
$retweets = $element-&amp;gt;story-&amp;gt;url_count;<br />
if($retweets){<br />
return $retweets;<br />
} else {<br />
return 0;<br />
}<br />
}</div></div>
<h2>Send Mail using mail function in PHP</h2>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$to = &quot;viralpatel.net@gmail.com&quot;;<br />
$subject = &quot;VIRALPATEL.net&quot;;<br />
$body = &quot;Body of your message here you can use HTML too. e.g.<br />
&lt;strong&gt; Bold &lt;/strong&gt;&quot;;<br />
$headers = &quot;From: Peter\r\n&quot;;<br />
$headers .= &quot;Reply-To: info@yoursite.com\r\n&quot;;<br />
$headers .= &quot;Return-Path: info@yoursite.com\r\n&quot;;<br />
$headers .= &quot;X-Mailer: PHP5\n&quot;;<br />
$headers .= 'MIME-Version: 1.0' . &quot;\n&quot;;<br />
$headers .= 'Content-type: text/html; charset=iso-8859-1' . &quot;\r\n&quot;;<br />
mail($to,$subject,$body,$headers);<br />
?&amp;gt;</div></div>
<h3>Updated 7/8/2011</h3>
<h2>Validate email Address</h2>
<p>This snippet will help you validate a email addy. It will check the MX records of the domain to make sure the email is more robust</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">function is_valid_email($email, $test_mx = false)<br />
{<br />
&nbsp; &nbsp; if(eregi(&quot;^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})$&quot;, $email))<br />
&nbsp; &nbsp; &nbsp; &nbsp; if($test_mx)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; list($username, $domain) = split(&quot;@&quot;, $email);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return getmxrr($domain, $mxrecords);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return true;<br />
&nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; return false;<br />
}</div></div>
<h2>Zip Files on the Fly</h2>
<p>Snippet created by David Walsh. zip files on the fly!</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">/* creates a compressed zip file */<br />
function create_zip($files = array(),$destination = '',$overwrite = false) {<br />
&nbsp; &nbsp; //if the zip file already exists and overwrite is false, return false<br />
&nbsp; &nbsp; if(file_exists($destination) &amp;&amp; !$overwrite) { return false; }<br />
&nbsp; &nbsp; //vars<br />
&nbsp; &nbsp; $valid_files = array();<br />
&nbsp; &nbsp; //if files were passed in...<br />
&nbsp; &nbsp; if(is_array($files)) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; //cycle through each file<br />
&nbsp; &nbsp; &nbsp; &nbsp; foreach($files as $file) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //make sure the file exists<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(file_exists($file)) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $valid_files[] = $file;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; //if we have good files...<br />
&nbsp; &nbsp; if(count($valid_files)) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; //create the archive<br />
&nbsp; &nbsp; &nbsp; &nbsp; $zip = new ZipArchive();<br />
&nbsp; &nbsp; &nbsp; &nbsp; if($zip-&gt;open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return false;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; //add the files<br />
&nbsp; &nbsp; &nbsp; &nbsp; foreach($valid_files as $file) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $zip-&gt;addFile($file,$file);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; //debug<br />
&nbsp; &nbsp; &nbsp; &nbsp; //echo 'The zip archive contains ',$zip-&gt;numFiles,' files with a status of ',$zip-&gt;status;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //close the zip -- done!<br />
&nbsp; &nbsp; &nbsp; &nbsp; $zip-&gt;close();<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //check to make sure the file exists<br />
&nbsp; &nbsp; &nbsp; &nbsp; return file_exists($destination);<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; else<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; return false;<br />
&nbsp; &nbsp; }<br />
}<br />
/***** Example Usage ***/<br />
$files=array('file1.jpg', 'file2.jpg', 'file3.gif');<br />
create_zip($files, 'myzipfile.zip', true);</div></div>
<h2> Resize Images on the fly</h2>
<p>This is a very useful snippet, especially when design wordpress templates and so on. Even shopping comparison websites!</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">/**********************<br />
*@filename - path to the image<br />
*@tmpname - temporary path to thumbnail<br />
*@xmax - max width<br />
*@ymax - max height<br />
*/<br />
function resize_image($filename, $tmpname, $xmax, $ymax)<br />
{<br />
&nbsp; &nbsp; $ext = explode(&quot;.&quot;, $filename);<br />
&nbsp; &nbsp; $ext = $ext[count($ext)-1];<br />
<br />
&nbsp; &nbsp; if($ext == &quot;jpg&quot; || $ext == &quot;jpeg&quot;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; $im = imagecreatefromjpeg($tmpname);<br />
&nbsp; &nbsp; elseif($ext == &quot;png&quot;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; $im = imagecreatefrompng($tmpname);<br />
&nbsp; &nbsp; elseif($ext == &quot;gif&quot;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; $im = imagecreatefromgif($tmpname);<br />
<br />
&nbsp; &nbsp; $x = imagesx($im);<br />
&nbsp; &nbsp; $y = imagesy($im);<br />
<br />
&nbsp; &nbsp; if($x &lt;= $xmax &amp;&amp; $y &lt;= $ymax)<br />
&nbsp; &nbsp; &nbsp; &nbsp; return $im;<br />
<br />
&nbsp; &nbsp; if($x &gt;= $y) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; $newx = $xmax;<br />
&nbsp; &nbsp; &nbsp; &nbsp; $newy = $newx * $y / $x;<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; $newy = $ymax;<br />
&nbsp; &nbsp; &nbsp; &nbsp; $newx = $x / $y * $newy;<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; $im2 = imagecreatetruecolor($newx, $newy);<br />
&nbsp; &nbsp; imagecopyresized($im2, $im, 0, 0, 0, 0, floor($newx), floor($newy), $x, $y);<br />
&nbsp; &nbsp; return $im2;<br />
}</div></div>
<p>Please bookmark this post, im going to weekly update it with snippets so watch this space!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2011/07/01/useful-php-snippets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouTube Clone Script</title>
		<link>http://www.website-ideas.co.uk/2010/10/10/youtube-clone-script/</link>
		<comments>http://www.website-ideas.co.uk/2010/10/10/youtube-clone-script/#comments</comments>
		<pubDate>Sun, 10 Oct 2010 19:18:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Clone Scripts]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Website Scripts]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=728</guid>
		<description><![CDATA[http://www.clipsharetemplates.com clone script allows you to run your own video sharing portal like YouTube.com, Metacafe, DailyMotion, and others The ClearWater template is a stunning and light design featuring stylish mouseover effects and will be a great addition to any video sharing website using Clipshare 4.1 Professional. The Clearwatter template utilizes all seven advertising positions which are configurable via the new advanced Clipshare 4.1 siteadmin advertise section, the template is a wide set design suitable for 1024+ resolutions this allows for better display of video&#8217;s and information. Demo]]></description>
			<content:encoded><![CDATA[<div>
<div></div>
<div>http://www.clipsharetemplates.com <strong>clone script</strong> allows you to run your own video sharing portal like  <strong>YouTube.com,</strong> Metacafe, DailyMotion, and others<br />
<a href="http://justclone.com/node/22#ixzz11z8B269n"></a></div>
</div>
<p>The ClearWater template is a stunning and light design featuring stylish  mouseover effects and will be a great addition to any video sharing  website using Clipshare 4.1 Professional.</p>
<p><strong>The Clearwatter templat</strong>e  utilizes all seven advertising positions which are configurable via the  new advanced Clipshare 4.1 siteadmin advertise section, the template is a  wide set design suitable for 1024+ resolutions this allows for better  display of video&#8217;s and information.</p>
<p><a href="http://clearwater.clipsharedemo.com/">Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/10/10/youtube-clone-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yahoo answers clone scriptYahoo answers clone script</title>
		<link>http://www.website-ideas.co.uk/2010/05/30/yahoo-answers-clone-scriptyahoo-answers-clone-script/</link>
		<comments>http://www.website-ideas.co.uk/2010/05/30/yahoo-answers-clone-scriptyahoo-answers-clone-script/#comments</comments>
		<pubDate>Sun, 30 May 2010 16:18:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Clone Scripts]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[Clone Script]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=705</guid>
		<description><![CDATA[Looking to create your own Yahoo Answer Website. Well here is the script that will help you achieve that goal! Question Answer Script with a large and highly customizable set of key features makes it the best of php answer script available. Question answer script has the question &#38; answer publishing including images &#38; videos, with highly secure environment to sustain any attack. Whether its features, support or ease-of-use, Question answer script offers the most out of money. Learn more about what makes the Question Answer Script the choice for people who are serious about the creating thriving online Question Answer websites. Quick &#38; Easy Wizard for Installation Email Administration for New Question, Answers, users added or for any modification performed. 100% Search Engine Friendly Website with Seo friendly URL&#8217;s &#38; Meta tags control Spam Proof &#8211; All forms are CAPTCHA Protected &#8220;Best Answers&#8221; &#38; &#8220;Answer Rating&#8221; available LeaderBoard &#38; Point System Question &#38; Answer Moderation available through Admin Panel &#38; also through Email. Change Skin in Just 1 Click. &#8211; Many Free Skins included Imports Question &#38; Answers From Yahoo Answers from your niche keyword. Quick Advertisement Integration like Google Adsense &#38; Affiliate Promotion CMS to add &#38; edit... ]]></description>
			<content:encoded><![CDATA[<p>Looking to create your own<strong> Yahoo Answer Website</strong>. Well here is the <strong>script </strong>that will help you achieve that goal!</p>
<p><strong>Question Answer Script</strong> with a large and highly customizable set of key features makes it the best of php answer script available. Question answer script has the question &amp; answer publishing including images &amp; videos, with highly secure environment to sustain any attack.</p>
<p>Whether its features, support or ease-of-use, Question answer script offers the most out of money. Learn more about what makes the Question Answer Script the choice for people who are serious about the creating thriving online Question Answer websites.<br />
Quick &amp; Easy Wizard for Installation<br />
Email Administration for New Question, Answers, users added or for any modification performed.<br />
100% Search Engine Friendly Website with Seo friendly URL&#8217;s &amp; Meta tags control<br />
Spam Proof &#8211; All forms are CAPTCHA Protected<br />
&#8220;Best Answers&#8221; &amp; &#8220;Answer Rating&#8221; available<br />
LeaderBoard &amp; Point System<br />
Question &amp; Answer Moderation available through Admin Panel &amp; also through Email.<br />
Change Skin in Just 1 Click. &#8211; Many Free Skins included<br />
Imports Question &amp; Answers From Yahoo Answers from your niche keyword.<br />
Quick Advertisement Integration like Google Adsense &amp; Affiliate Promotion<br />
CMS to add &amp; edit new pages and emails<br />
RSS available Category wise for Latest Question Posted<br />
Twitting the questions at twitter.com as posted on the website<br />
You can embed Image &amp; Youtube videos with Question&#8217;s &amp; Answer<br />
Google Sitemap is created automatically for fast indexing<br />
Multilingual Supports. Supports UTF8 Encoding<br />
24&#215;7 Support</p>
<p style="text-align: center;"><strong>PRICE: $79</strong></p>
<p style="text-align: center;"><strong><a href="http://www.questionanswerscript.com/demo/">DEMO</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/05/30/yahoo-answers-clone-scriptyahoo-answers-clone-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Auctions Script Flippa clone script</title>
		<link>http://www.website-ideas.co.uk/2010/05/29/domain-auctions-script-flippa-clone-script/</link>
		<comments>http://www.website-ideas.co.uk/2010/05/29/domain-auctions-script-flippa-clone-script/#comments</comments>
		<pubDate>Sat, 29 May 2010 05:27:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Clone Scripts]]></category>
		<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Clone Script]]></category>
		<category><![CDATA[flippa]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=699</guid>
		<description><![CDATA[This fantastic script can be used to create your very own Flippa website. Not only can it be used as a flippa type website, but it&#8217;s great for any marketplace niche. With this Clone Script you will be able to produce a marketplace website within minutes. PRICE: $57 DEMO]]></description>
			<content:encoded><![CDATA[<p>This fantastic script can be used to create your very own <strong>Flippa website.</strong> Not only can it be used as a flippa type website, but it&#8217;s great for any marketplace niche. With this <a href="http://www.website-ideas.co.uk/category/clone-scripts/">Clone Script</a> you will be able to produce a marketplace website within minutes.</p>
<p style="text-align: center;"><strong>PRICE: $57</strong></p>
<p style="text-align: center;"><strong><a href="http://www.domainauctionsscript.com/">DEMO</a><a href="http://www.domainauctionsscript.com/"> </a><a href="http://www.clonestop.com/clonestopfiles/VoucherScript.zip"></a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/05/29/domain-auctions-script-flippa-clone-script/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Facebook Style Footer Admin Panel Part 2</title>
		<link>http://www.website-ideas.co.uk/2010/05/17/facebook-style-footer-admin-panel-part-2/</link>
		<comments>http://www.website-ideas.co.uk/2010/05/17/facebook-style-footer-admin-panel-part-2/#comments</comments>
		<pubDate>Mon, 17 May 2010 18:42:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles By Others]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=684</guid>
		<description><![CDATA[This is Part 2 of the Facebook Style Footer Admin Panel, if you haven’t checked out Part 1 this is the perfect time to check it out. The footer panel can be useful for admin driven applications and much more. There are many useful techniques that we covered today like the fixed footer, CSS tooltips, height calculation function, and multiple toggle function, that can be used in various ways for your future projects. Read how to do it!]]></description>
			<content:encoded><![CDATA[<p>This is Part 2 of the Facebook Style Footer Admin Panel, if you haven’t  checked out <a href="http://www.website-ideas.co.uk/2010/05/16/facebook-style-footer-admin-panel-part-1/">Part  1 this is the perfect time to check  it out.</a></p>
<p>The footer panel can be useful for admin driven applications and much  more. There are many useful techniques that we covered today like the  fixed footer, CSS tooltips, height calculation function, and multiple  toggle function, that can be used in various ways for your future  projects.</p>
<p><a href="http://www.sohtanaka.com/web-design/facebook-style-footer-admin-panel-part-2/">Read how to do it!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/05/17/facebook-style-footer-admin-panel-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery lightBox plugin</title>
		<link>http://www.website-ideas.co.uk/2010/05/17/jquery-lightbox-plugin/</link>
		<comments>http://www.website-ideas.co.uk/2010/05/17/jquery-lightbox-plugin/#comments</comments>
		<pubDate>Mon, 17 May 2010 18:32:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[lightBox plugin]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=680</guid>
		<description><![CDATA[jQuery lightBox plugin is simple, elegant, unobtrusive, no need extra markup and is used to overlay images on the current page through the power and flexibility of jQuery´s selector. lightBox is a plugin for jQuery. It was inspired in Lightbox JS by Lokesh Dhakar. The better way to know what is jQuery lightBox plugin, click the Example tab above and see it in action. Download here: http://leandrovieira.com/download/7/]]></description>
			<content:encoded><![CDATA[<p><strong>jQuery lightBox plugin</strong> is simple, elegant,  unobtrusive, no need extra markup and is <strong>used to overlay images  on the current page</strong> through the power and flexibility of  jQuery´s selector.</p>
<p>lightBox is a plugin for <a href="http://jquery.com/">jQuery</a>.  It was inspired in <a href="http://www.huddletogether.com/projects/lightbox2/">Lightbox JS</a> by Lokesh Dhakar.</p>
<p>The better way to know what is <strong>jQuery  lightBox plugin</strong>, click the Example tab above and see it in  action.</p>
<p>Download here: http://leandrovieira.com/download/7/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/05/17/jquery-lightbox-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Form Field Validation Plugin</title>
		<link>http://www.website-ideas.co.uk/2010/05/17/jquery-form-field-validation-plugin/</link>
		<comments>http://www.website-ideas.co.uk/2010/05/17/jquery-form-field-validation-plugin/#comments</comments>
		<pubDate>Mon, 17 May 2010 18:15:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jVal]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=676</guid>
		<description><![CDATA[jVal is a jQuery form field validation plugin that provides an appealing animated message flyout that doesn’t impede form layout/design while being user-friendly. FEATURES Current development version is only 8KB and 5.8KB minified Check validity of field values within a certain container or block element based off simple INPUT tag attributes Easy configuration of validity checks per field as per attributes in the INPUT tag Check the validity of all fields within a certain container with a single function call Check the validity of a single field when the user clicks away firing the onBlur event Prevent the user to input specific characters into the field and notify them it’s not allowed ASSETS As they currently reside on Google Code jVal.js &#8211; LATEST &#8211; core jVal jQuery plugin code jVal.css &#8211; drives the style of the jVal flyout notifications jVal.html &#8211; demonstration html instantiating jVal remaining assets &#8211; graphics Demo : http://www.overset.com/2008/07/31/jval–jquery-form-field-validation-plugin/]]></description>
			<content:encoded><![CDATA[<p><strong>jVal is a jQuery</strong> form field <strong>validation plugin</strong> that  provides an appealing animated message flyout that doesn’t impede form  layout/design while being user-friendly.</p>
<h5><strong>FEATURES</strong></h5>
<ul>
<li>Current development version is only 8KB and 5.8KB minified</li>
<li>Check validity of field values within a certain container or block  element based off simple INPUT tag attributes</li>
<li>Easy configuration of validity checks per field as per attributes in  the INPUT tag</li>
<li>Check the validity of all fields within a certain container with a  single function call</li>
<li>Check the validity of a single field when the user clicks away  firing the onBlur event</li>
<li>Prevent the user to input specific characters into the field and notify  them it’s not allowed</li>
</ul>
<p><strong>ASSETS</strong> As they currently reside on <a href="http://code.google.com/p/jquery-jval/source/browse/#svn/trunk" target="_blank">Google  Code</a></p>
<ul>
<li><a href="http://code.google.com/p/jquery-jval/source/browse/trunk/jVal.js" target="_blank">jVal.js</a> &#8211; LATEST &#8211; core jVal jQuery plugin code</li>
<li><a href="http://code.google.com/p/jquery-jval/source/browse/trunk/jVal.css" target="_blank">jVal.css</a> &#8211; drives the style of the jVal flyout notifications</li>
<li><a href="http://code.google.com/p/jquery-jval/source/browse/trunk/jVal.html" target="_blank">jVal.html</a> &#8211; demonstration html instantiating jVal</li>
<li><a href="http://code.google.com/p/jquery-jval/source/browse/#svn/trunk" target="_blank">remaining  assets</a> &#8211; graphics</li>
</ul>
<p>Demo :<a rel="nofollow" href="http://www.overset.com/2008/07/31/jval--jquery-form-field-validation-plugin/" target="_blank"> http://www.overset.com/2008/07/31/jval–jquery-form-field-validation-plugin/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/05/17/jquery-form-field-validation-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Style Footer Admin Panel Part 1</title>
		<link>http://www.website-ideas.co.uk/2010/05/16/facebook-style-footer-admin-panel-part-1/</link>
		<comments>http://www.website-ideas.co.uk/2010/05/16/facebook-style-footer-admin-panel-part-1/#comments</comments>
		<pubDate>Sun, 16 May 2010 16:25:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=657</guid>
		<description><![CDATA[Learn how to recreate the Facebook footer admin panel with CSS and jQuery. Facebook has many Ajax driven features and applications that are very impressive, and one of the things I particularly like is the footer admin panel, where it neatly organizes frequently used links and applications. Read how to do it !!!!]]></description>
			<content:encoded><![CDATA[<p>Learn how to recreate the<strong> Facebook footer</strong> admin panel with CSS and<strong> jQuery</strong>. Facebook has many Ajax driven features and applications that are very  impressive, and one of the things I particularly like is the footer  admin panel, where it neatly organizes frequently used links and  applications.</p>
<p><img class="alignnone size-full wp-image-658" title="01_finaldemo" src="http://www.website-ideas.co.uk/wp-content/uploads/2010/05/01_finaldemo.gif" alt="01_finaldemo" width="550" height="300" /></p>
<p><a href="http://www.sohtanaka.com/web-design/facebook-style-footer-admin-panel-part-1/">Read how to do it !!!!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/05/16/facebook-style-footer-admin-panel-part-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create A Digg-like site With Joomla &#8211; Dugg Plazza</title>
		<link>http://www.website-ideas.co.uk/2010/02/04/create-a-digg-like-site-with-joomla-dugg-plazza/</link>
		<comments>http://www.website-ideas.co.uk/2010/02/04/create-a-digg-like-site-with-joomla-dugg-plazza/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 07:11:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[Digg scripts]]></category>
		<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=628</guid>
		<description><![CDATA[Dugg Plazza allows all Joomla lovers to design their very own digg like website. Digg scripts are somehow proving to be more popular. After running through a few of these Digg like scripts, we found Dugg plazza to be quite handy. Moving form pligg to Joomla, this was far our best option.  TPDugg (Component + Modules) Explained TPDugg is a social article sharing component for joomla. With this component, you can make a website just like digg.com with joomla, where your visitors or users can share articles, voted it, or give a comment about it, just like so many social sharing websites, such as; digg.com, stumbleupon, misterwong, reddit, etc! This module has a function to show 3 types of TPDugg contents; based on the latest submitted item, the highest voted item and the most-commented item. It also can be arranged based on the time line, for example; the latest item from last week, last month, etc. Beside that, this module also has features that made it more flexible, such as feature to choose what section and category to display, feature to choose layout module; standard or simple, and many others. You can arrange everything through the backend page of this... ]]></description>
			<content:encoded><![CDATA[<p><strong>Dugg Plazza</strong> allows all <strong>Joomla</strong> lovers to design their very own digg like website. <strong>Digg scripts</strong> are somehow proving to be more popular. After running through a few of these Digg like scripts, we found Dugg plazza to be quite handy. Moving form <strong>pligg</strong> to <strong>Joomla</strong>, this was far our best option.  <span id="more-628"></span></p>
<p><strong>TPDugg (Component + Modules) Explained</strong></p>
<p>TPDugg is a social article sharing <strong>component for joomla</strong>. With this component, you can make a website just like digg.com with joomla, where your visitors or users can share articles, voted it, or give a comment about it, just like so many social sharing websites, such as; digg.com, stumbleupon, misterwong, reddit, etc!</p>
<p>This module has a function to show 3 types of TPDugg contents; based on the latest submitted item, the highest voted item and the most-commented item. It also can be arranged based on the time line, for example; the latest item from last week, last month, etc.</p>
<p>Beside that, this module also has features that made it more flexible, such as feature to choose what section and category to display, feature to choose layout module; standard or simple, and many others. You can arrange everything through the backend page of this module.</p>
<p>Joomla users have been waiting for a <strong>digg</strong> type system to be released and so far Dugg Plazza should tick all the buttons if you are a Joomla user.</p>
<p><img class="alignnone size-full wp-image-629" title="dugg_plazza" src="http://www.website-ideas.co.uk/wp-content/uploads/2010/02/dugg_plazza.jpg" alt="dugg_plazza" width="418" height="1024" /></p>
<p><a href="http://demo.templateplazza.net/dugg_plazza/">Download Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2010/02/04/create-a-digg-like-site-with-joomla-dugg-plazza/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ajax Availability Calendar</title>
		<link>http://www.website-ideas.co.uk/2009/11/26/ajax-availability-calendar/</link>
		<comments>http://www.website-ideas.co.uk/2009/11/26/ajax-availability-calendar/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 05:55:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Free Website Stuff]]></category>
		<category><![CDATA[Sobi2]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[availability calendar]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=600</guid>
		<description><![CDATA[An open source project available for all to use and develop. Using AJAX to update in real time an availability calendar. This script is great and is ideal for hotels or apartments. We at present are busy building a Sobi2 plugin using this module and will soon be available for download at Website Ideas. Some great features that it has! # A very simple php/ajax script that can be used as an availability calendar for hotels/apartaments etc. # This panel would be the admin panel where the owner could update the availabilty for each day. # It would be a simple matter of reproducing this without the links for the public availability calendar (ie without the possibility to modify the day status) # It uses AJAX to change the days state without having to reload the page &#8211; just click on any day to change it&#8217;s state. # The script with all the files including the images used can be downloaded in this zip file Demo here! Download here!]]></description>
			<content:encoded><![CDATA[<p>An open source project available for all to use and develop. 		Using <strong>AJAX</strong> to update in real time an <strong>availability calendar</strong>. This script is great and is ideal for hotels or apartments. We at present are busy building a<strong> Sobi2</strong> <strong> plugin</strong> using this module and will soon be available for download at Website Ideas.</p>
<p>Some great features that it has!<span id="more-600"></span></p>
<p># A very simple <strong>php/ajax script</strong> that can be used as an<strong> availability calendar</strong> for hotels/apartaments etc.<br />
# This panel would be the admin panel where the owner could update the availabilty for each day.<br />
# It would be a simple matter of reproducing this without the links for the public availability calendar (ie without the possibility to modify the day status)<br />
# It uses AJAX to change the days state without having to reload the page &#8211; just click on any day to change it&#8217;s state.<br />
# The script with all the files including the images used can be <a href="http://www.website-ideas.co.uk/out/cbolson/"><strong>downloaded in this zip</strong></a> file</p>
<p><strong><a href="http://www.cbolson.com/code/availability-calendar/">Demo here!</a></strong> <a href="http://www.website-ideas.co.uk/out/cbolson/"><strong>Download here</strong></a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2009/11/26/ajax-availability-calendar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dolphin 6 &#8211; Create Your Own Social Media Network for Free</title>
		<link>http://www.website-ideas.co.uk/2009/07/24/dolphin-6-create-your-own-social-media-network-for-free/</link>
		<comments>http://www.website-ideas.co.uk/2009/07/24/dolphin-6-create-your-own-social-media-network-for-free/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 10:39:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[Dolphin 6]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=560</guid>
		<description><![CDATA[Finding good quality FREE scripts are so hard at times to come by. Coders spent hundreds of hours on them and end up selling the stuff ( which you cant blame them).  But today we take a look at a script that really blew me off my feet,  Dolphin 6 . The prefect script for a social media network. It has all the functionality you will need to start off with and has wonderful features ranging from emotions , RSS Feeds, Fully incorporated Ajax controls to user friendly control panels. BoonEx Dolphin is 100% open-source, so you can modify every piece of code.  Dolphin is absolutely independent &#8211; it includes a huge pack of features, including an pen-source media server, so you don&#8217;t have to pay 3rd party software providers.  Dolphin is re-brandable, so you can display your own copyrights and logos on your site. Got you guys excited yet? Download Dolphin 6]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl id="attachment_561" class="wp-caption alignnone" style="width: 510px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-561" title="dolphin" src="http://www.website-ideas.co.uk/wp-content/uploads/2009/07/dolphin.jpg" alt="dolphin" width="500" height="217" /></dt>
</dl>
</div>
<p>Finding good quality<strong> FREE</strong> scripts are so hard at times to come by. Coders spent hundreds of hours on them and end up selling the stuff ( which you cant blame them).  But today we take a look at a script that really blew me off my feet,  <a href="http://www.boonex.com/"><strong>Dolphin 6 </strong></a>. The prefect script for a social media network. It has all the functionality you will need to start off with and has wonderful features ranging from emotions , RSS Feeds, Fully incorporated Ajax controls to user friendly control panels.</p>
<p><strong> BoonEx Dolphin</strong> is 100% open-source, so you can modify every                     piece of code.  Dolphin is absolutely independent &#8211; it includes a huge pack of features, including an                     pen-source media server, so you don&#8217;t have to pay 3rd party software providers.  <strong>Dolphin</strong> is                     re-brandable, so you can display your own copyrights and logos on your site.</p>
<p>Got you guys excited yet?<span id="more-560"></span></p>
<p><strong><a href="http://www.boonex.com/products/dolphin/download/">Download Dolphin 6</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2009/07/24/dolphin-6-create-your-own-social-media-network-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Must Have Web Developer Tools</title>
		<link>http://www.website-ideas.co.uk/2009/03/20/3-must-have-web-developer-tools/</link>
		<comments>http://www.website-ideas.co.uk/2009/03/20/3-must-have-web-developer-tools/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 07:24:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[shared hosting]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=433</guid>
		<description><![CDATA[To create a website you need a toolbox full of tools &#8211; software, add-ons and some more software. Perhaps in theory a simple text editor is enough to create necessary code. But in real life comfort comes first and you will need the following three tools to create a website as smoothly as possible. 1. A Ftp Client &#8211; FireFTP Uploading files to your shared hosting account is a common bottleneck in the web development process. It is thus important to minimize programs used and make sure they include all the functions possible. FireFTP is a FireFox add-on that allows you to manage your files through an FTP client in one tab and preview the changes on your site in the other tab. This is integrated web development and will save you much time and sanity. 2. A Text Editor &#8211; EditPlus According to us there are two types of text editors – the overly complicated and the too simple. EditPlus fits in somewhere in between as it has the simple design like Notepad but still comes with cool features like color coding, tabbing and pre-selecting of script language. For example &#8211; if you do not finish a piece of... ]]></description>
			<content:encoded><![CDATA[<p>To create a website you need a toolbox full of tools &#8211; software, add-ons and some more software. Perhaps in theory a simple text editor is enough to create necessary code. But in real life comfort comes first and you will need the following three tools to create a website as smoothly as possible.</p>
<p><strong>1. A Ftp Client &#8211; FireFTP </strong><br />
Uploading files to your <strong><a href="http://www.webhostingsearch.com/shared-web-hosting.php">shared hosting</a></strong> account is a common bottleneck in the web development process. It is thus important to minimize programs used and make sure they include all the functions possible. FireFTP is a FireFox add-on that allows you to manage your files through an FTP client in one tab and preview the changes on your site in the other tab. This is integrated web development and will save you much time and sanity. <span id="more-433"></span></p>
<p><strong>2. A Text Editor &#8211; EditPlus</strong><br />
According to us there are two types of text editors – the overly complicated and the too simple. EditPlus fits in somewhere in between as it has the simple design like Notepad but still comes with cool features like color coding, tabbing and pre-selecting of script language. For example &#8211; if you do not finish a piece of code correctly it will show much clearer as the color changes.<br />
<strong><br />
3. An Image Editor – Photoshop</strong><br />
While the two tools above are free to download, Photoshop isn’t. But we are going to assume that you actually can afford to buy PS and go ahead and recommend it as the third and final tool. With the text editor you get to define the web design by building stylesheet. An image editor however, is necessary to create the site’s graphic elements, such as buttons, headers, logo etc.</p>
<p>Using Photoshop you can even create the complete web design for your site, slice it up with the slice-tool and save it as both images and html.</p>
<p>These were three tools required to build a website &#8211; a FTP client, a text editor and an image editor. Now you have everything you need to program in javascript, PHP, Html or any letter based script language. You can build the web design, upload the image files to your and then apply them to appropriate div tag in the stylesheet.</p>
<p>This is your toolbox.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2009/03/20/3-must-have-web-developer-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Posting twitter posts with Curl using PHP, Sobi2 and Joomla</title>
		<link>http://www.website-ideas.co.uk/2009/03/07/getting-twitter-posts-with-curl-and-php/</link>
		<comments>http://www.website-ideas.co.uk/2009/03/07/getting-twitter-posts-with-curl-and-php/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 05:09:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sobi2]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=431</guid>
		<description><![CDATA[Being experimenting with the API of Twitter. I started out playing with curl to send updates from a joomla directory, once a user added a listing. The concept was to have followers follow the updates live via twitter. Tools used: Joomla , Sobi2 and some basic PHP. Firstly make sure your server supports curl and that the extension is active. A simple install to linux would look something like this. sudo apt-get install curl libcurl3 libcurl3-dev php5-curl Now you have PHP cURL installed, the next thing you need to do is to restart apache2, run the following command in your terminal: sudo /etc/init.d/apache2 restart In the command terminal run the following command to test the connection to twitter. You can use the -v dump method to post any errors on the screen if connection fails. example curl -u -v ( and then the command ) curl -u username:password -d status=&#34;twittering from curl&#34; http://twitter.com/statuses/update.xml I then used the PHP curl features to do the same thing from PHP: &#60;span class=&#34;pun&#34;&#62;&#38;lt;?&#60;/span&#62;&#60;span class=&#34;pln&#34;&#62;php &#60;/span&#62;&#60;span class=&#34;com&#34;&#62;// Set username and password&#60;/span&#62;&#60;span class=&#34;pln&#34;&#62; $username &#60;/span&#62;&#60;span class=&#34;pun&#34;&#62;=&#60;/span&#62;&#60;span class=&#34;pln&#34;&#62; &#60;/span&#62;&#60;span class=&#34;str&#34;&#62;'username'&#60;/span&#62;&#60;span class=&#34;pun&#34;&#62;;&#60;/span&#62;&#60;span class=&#34;pln&#34;&#62; $password &#60;/span&#62;&#60;span class=&#34;pun&#34;&#62;=&#60;/span&#62;&#60;span class=&#34;pln&#34;&#62; &#60;/span&#62;&#60;span class=&#34;str&#34;&#62;'password'&#60;/span&#62;&#60;span class=&#34;pun&#34;&#62;;&#60;/span&#62;&#60;span class=&#34;pln&#34;&#62; &#60;/span&#62;&#60;span class=&#34;com&#34;&#62;// The message you want to... ]]></description>
			<content:encoded><![CDATA[<p>Being experimenting with the API of <a href="http://www.twitter.com/">Twitter</a>. I started out playing with <a href="http://curl.haxx.se/">curl</a> to send updates from a <a href="http://www.joomla.org/">joomla</a> directory, once a user added a listing. The concept was to have followers follow the updates live via <strong>twitter</strong>. Tools used: <strong>Joomla </strong>, <strong>Sobi2 </strong>and some basic PHP.</p>
<p>Firstly make sure your server supports curl and that the extension is active. A simple install to linux would look something like this.</p>
<p><strong><span style="color: #800000;"><em></p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">sudo apt-get install curl libcurl3 libcurl3-dev php5-curl</div></div>
<p></em></span></strong></p>
<p>Now you have PHP cURL installed, the next thing you need to do is to restart apache2, run the following command in your terminal:</p>
<p><strong><span style="color: #800000;"><em></p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">sudo /etc/init.d/apache2 restart</div></div>
<p></em></span></strong></p>
<p>In the command terminal run the following command to test the connection to twitter. You can use the -v dump method to post any errors on the screen if connection fails. example curl -u -v ( and then the command )</p>
<p><strong><span style="color: #800000;"><em></p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">curl -u username:password -d status=&quot;twittering from curl&quot; http://twitter.com/statuses/update.xml</div></div>
<p></em></span></strong></p>
<p>I then used the <span class="caps">PHP</span> curl features to do the same thing from <span class="caps">PHP</span>:<span id="more-431"></span></p>
<pre class="prettyprint"><strong><span style="color: #800000;"><em>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;span class=&quot;pun&quot;&gt;&amp;lt;?&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;php<br />
&lt;/span&gt;&lt;span class=&quot;com&quot;&gt;// Set username and password&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
$username &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;str&quot;&gt;'username'&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
$password &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;str&quot;&gt;'password'&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
&lt;/span&gt;&lt;span class=&quot;com&quot;&gt;// The message you want to send&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
$message &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;str&quot;&gt;'is twittering from php using curl'&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
&lt;/span&gt;&lt;span class=&quot;com&quot;&gt;// The twitter API address&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
$url &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;str&quot;&gt;'http://twitter.com/statuses/update.xml'&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
&lt;/span&gt;&lt;span class=&quot;com&quot;&gt;// Alternative JSON version&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
&lt;/span&gt;&lt;span class=&quot;com&quot;&gt;// $url = 'http://twitter.com/statuses/update.json';&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
&lt;/span&gt;&lt;span class=&quot;com&quot;&gt;// Set up and execute the curl process&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
$curl_handle &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; curl_init&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;();&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
curl_setopt&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;$curl_handle&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; CURLOPT_URL&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;$url&quot;&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;);&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
curl_setopt&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;$curl_handle&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; CURLOPT_CONNECTTIMEOUT&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;lit&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;);&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
curl_setopt&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;$curl_handle&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; CURLOPT_RETURNTRANSFER&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;lit&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;);&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
curl_setopt&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;$curl_handle&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; CURLOPT_POST&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;lit&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;);&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
curl_setopt&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;$curl_handle&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; CURLOPT_POSTFIELDS&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;status=$message&quot;&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;);&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
curl_setopt&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;$curl_handle&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; CURLOPT_USERPWD&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;str&quot;&gt;&quot;$username:$password&quot;&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;);&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
$buffer &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; curl_exec&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;$curl_handle&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;);&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
curl_close&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;$curl_handle&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;);&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
&lt;/span&gt;&lt;span class=&quot;com&quot;&gt;// check for success or failure&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
&lt;/span&gt;&lt;span class=&quot;kwd&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;empty&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;$buffer&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
    echo &lt;/span&gt;&lt;span class=&quot;str&quot;&gt;'message'&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kwd&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt; &lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
    echo &lt;/span&gt;&lt;span class=&quot;str&quot;&gt;'success'&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;;&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;pln&quot;&gt;<br />
&lt;/span&gt;&lt;span class=&quot;pun&quot;&gt;?&amp;gt;&lt;/span&gt;</div></div>

</em></span></strong></pre>
<p>This is just a basic layout, the twitter API allows you to do so much more. Now comes the fun part. If you are using <strong>joomla</strong> and <strong>sobi2</strong> as a directory component, here is a way to place the above code to your <strong>sobi2 </strong>directory and receive live updates once a user adds a listing.</p>
<p>Open the sobi2.class file , then scroll down to line 533 and insert the above code just above the sql query. You can then use the variables within the sobi2 framework to display to twitter. Here is another sample of this:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;strong&gt;&lt;span style=&quot;color: #800000;&quot;&gt;&lt;em&gt;function ShortenText($text) {<br />
$chars = 140;<br />
$text = $text.&quot; &quot;;<br />
$text = substr($text,0,$chars);<br />
$text = substr($text,0,strrpos($text,' '));<br />
$text = $text.&quot;...&quot;;<br />
return $text;<br />
}&lt;/em&gt;&lt;/span&gt;&lt;/strong&gt;</div></div>
<p><strong><span style="color: #800000;"><em></p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$username = 'username';<br />
$password = 'password';</div></div>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$twitpost = $this-&amp;gt;title.&quot; has joined your directory!&quot;;</div></div>
<p></em></span></strong></p>
<p><strong><span style="color: #800000;"></p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;em&gt;$twitmessage = ShortenText($twitpost);&lt;/em&gt;</div></div>
<p></span></strong></p>
<p><strong><span style="color: #800000;"></p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;em&gt;$url = 'http://twitter.com/statuses/update.xml';&lt;/em&gt;</div></div>
<p></span></strong></p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;strong&gt;&lt;span style=&quot;color: #800000;&quot;&gt;&lt;em&gt;$curl_handle = curl_init();<br />
curl_setopt($curl_handle, CURLOPT_URL, &quot;$url&quot;);<br />
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);<br />
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($curl_handle, CURLOPT_POST, 1);<br />
curl_setopt($curl_handle, CURLOPT_POSTFIELDS, &quot;status=$twitmessage&quot;);<br />
curl_setopt($curl_handle, CURLOPT_USERPWD, &quot;$username:$password&quot;);<br />
$buffer = curl_exec($curl_handle);<br />
curl_close($curl_handle);<br />
// check for success or failure<br />
if (empty($buffer)) {<br />
$twitresponse = 'Deal not posted to Twitter';<br />
} else {<br />
$twitresponse = 'Deal posted to Twitter';<br />
}&lt;/em&gt;&lt;/span&gt;&lt;/strong&gt;</div></div>
<p>Just adapt it as you need to. you can go as far as adding the url to the post. ( incorporate <a href="http://www.tiny.cc/">tiny url</a> to keep the url short ). Will post a seperate tutorial on this shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2009/03/07/getting-twitter-posts-with-curl-and-php/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Take control of your online advertising</title>
		<link>http://www.website-ideas.co.uk/2009/01/29/take-control-of-your-online-advertising/</link>
		<comments>http://www.website-ideas.co.uk/2009/01/29/take-control-of-your-online-advertising/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 06:18:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Affiliate Programs]]></category>
		<category><![CDATA[Website Ideas]]></category>
		<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[OpenX]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=406</guid>
		<description><![CDATA[Looking to take control of your advertising campaigns? Well OpenX is your answer. There came a point in time where I had no control of my ad campaigns. With so many different projects and  making use of different CMS systems, advertising for me became a nightmare. Having to log into 20 different accounts to view page impressions and so on was not working. So I then stumbled upon a free ad server for web publishers, called OpenX. It allows users, web developers and advertisers to take control of their advertising. Web developers have gone as  far as using this server system to create their very own affiliate programs. OpenX carry’s the most advance tracking system I have ever seen in a open source software. Giving in depth tracking to all your campaigns. Here is a small break down of what OpenX can do for you! o    Try new ad networks quickly and easily o    Deliver direct ad sales reliably o    Rotate banners on your site o    Compare the performance of different ads and networks o    Meet all your advertisers’ needs o    Optimise ad revenue using rich targeting options o    Manage all your websites from one place o    Integrate with other... ]]></description>
			<content:encoded><![CDATA[<p>Looking to take control of your <strong>advertising campaigns</strong>? Well <a href="http://www.openx.org/"><strong>OpenX </strong></a>is your answer. There came a point in time where I had no control of my ad campaigns. With so many different projects and  making use of different <a href="http://www.joomla.org">CMS systems</a>, advertising for me became a nightmare.</p>
<p><a href="http://www.website-ideas.co.uk/wp-content/uploads/2009/01/openx.jpg"><img class="alignnone size-full wp-image-407" title="openx" src="http://www.website-ideas.co.uk/wp-content/uploads/2009/01/openx.jpg" alt="openx" width="280" height="96" /></a></p>
<p>Having to log into 20 different accounts to view page impressions and so on was not working. So I then stumbled upon a free ad server for web publishers, called <strong>OpenX</strong>. It allows users, web developers and advertisers to take control of their advertising. Web developers have gone as  far as using this server system to create their very own <a href="http://affiliates.trafficsynergy.com/z/239/CD2994/">affiliate programs</a>.</p>
<p><strong>OpenX </strong>carry’s the most advance tracking system I have ever seen in a open source software. Giving in depth tracking to all your campaigns.<span id="more-406"></span></p>
<p>Here is a small break down of what OpenX can do for you!</p>
<p>o    Try new ad networks quickly and easily<br />
o    Deliver direct ad sales reliably<br />
o    Rotate banners on your site<br />
o    Compare the performance of different ads and networks<br />
o    Meet all your advertisers’ needs<br />
o    Optimise ad revenue using rich targeting options<br />
o    Manage all your websites from one place<br />
o    Integrate with other applications<br />
o    Run affiliate, advertiser and publisher networks<br />
o    Scale to billions of ads each month<br />
o    Customize the ad server to suit your needs<br />
o    Control your technology costs</p>
<p>And so much more.</p>
<p>Download <a href="http://www.openx.org/ad-server/download">OpenX Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2009/01/29/take-control-of-your-online-advertising/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web applications user interface library</title>
		<link>http://www.website-ideas.co.uk/2008/10/10/web-applications-user-interface-library/</link>
		<comments>http://www.website-ideas.co.uk/2008/10/10/web-applications-user-interface-library/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 08:17:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Scripts]]></category>
		<category><![CDATA[Website Tools]]></category>
		<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://www.website-ideas.co.uk/?p=346</guid>
		<description><![CDATA[Being a big fan of web interface library&#8217;s, i stumbled upon a web application user interface that uses mootools as its framework. called MochaUI. This can be used for web applications, web desktops, web sites, widgets, Standalone Windows and Modal Dialogs. I&#8217;ve personally set this ui up to see what MochaUI was made of, and to my surprise she meet with my approval, so i thought i would share it. Please note that mootools is needed along with this script. Mootools Mootools is an Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer. Please click here to view demo To download MochaUI click here]]></description>
			<content:encoded><![CDATA[<p>Being a big fan of <em><strong>web interface library&#8217;s</strong></em>, i stumbled upon a web application user interface that uses <em><strong>mootools </strong></em>as its framework. called MochaUI. This can be used for web applications, web desktops, web sites, widgets, Standalone Windows and Modal Dialogs. I&#8217;ve personally set this ui up to see what MochaUI was made of, and to my surprise she meet with my approval, so i thought i would share it.</p>
<p><img class="alignnone size-full wp-image-347" title="ui" src="http://www.website-ideas.co.uk/wp-content/uploads/2008/10/ui.jpg" alt="web applications" width="500" height="306" /></p>
<p>Please note that mootools is needed along with this script.</p>
<p><span id="more-346"></span></p>
<h4>Mootools</h4>
<p><a href="http://mootools.net/">Mootools</a> is an Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer.</p>
<p>Please click here to view <a href="http://mochaui.com/demo/">demo</a></p>
<p>To download MochaUI <a href="http://mochaui.com/">click here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.website-ideas.co.uk/2008/10/10/web-applications-user-interface-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

