<?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>The Journal of Tim Roberts</title>
	<atom:link href="http://www.wiseguysonly.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wiseguysonly.com</link>
	<description>PHP,MySQL and jQuery Developer</description>
	<lastBuildDate>Sun, 20 Jun 2010 17:12:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CakePHP Full Text Search</title>
		<link>http://www.wiseguysonly.com/2010/06/20/cakephp-full-text-search/</link>
		<comments>http://www.wiseguysonly.com/2010/06/20/cakephp-full-text-search/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 17:12:02 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.wiseguysonly.com/?p=346</guid>
		<description><![CDATA[CakePHP&#8217;s database abstraction is just one of the reasons to use this powerful framework for agile web development. However, it is not always obvious how to build complex queries. I recently had to implement a MySQL full text search against a music database that searched on titles, descriptions and tags. Full text search is a [...]]]></description>
			<content:encoded><![CDATA[<p>CakePHP&#8217;s database abstraction is just one of the reasons to use this powerful framework for agile web development. However, it is not always obvious how to build complex queries. I recently had to implement a MySQL full text search against a music database that searched on titles, descriptions and tags. Full text search is a quick, and not too dirty way to make a pretty decent search, although it does come with a caveat, as described in the MySQL documentation:</p>
<blockquote><p>Full-text indexes can be used only with <code style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 13px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: white; color: #026789; font-weight: bold; font-family: courier, 'courier new', fixed, monospace; background-position: initial initial; background-repeat: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;">MyISAM</code> tables, and can be created only for <a style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; text-decoration: underline; color: #00759f; background-position: initial initial; background-repeat: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;" title="10.4.1. The CHAR and         VARCHAR Types" href="http://dev.mysql.com/doc/refman/4.1/en/char.html"><code style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 13px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: white; color: #026789; font-weight: bold; font-family: courier, 'courier new', fixed, monospace; text-decoration: underline; background-position: initial initial; background-repeat: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;">CHAR</code></a>, <a style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; text-decoration: underline; color: #00759f; background-position: initial initial; background-repeat: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;" title="10.4.1. The CHAR and         VARCHAR Types" href="http://dev.mysql.com/doc/refman/4.1/en/char.html"><code style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 13px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: white; color: #026789; font-weight: bold; font-family: courier, 'courier new', fixed, monospace; text-decoration: underline; background-position: initial initial; background-repeat: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;">VARCHAR</code></a>, or <a style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; text-decoration: underline; color: #00759f; background-position: initial initial; background-repeat: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;" title="10.4.3. The BLOB and         TEXT Types" href="http://dev.mysql.com/doc/refman/4.1/en/blob.html"><code style="outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 13px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: white; color: #026789; font-weight: bold; font-family: courier, 'courier new', fixed, monospace; text-decoration: underline; background-position: initial initial; background-repeat: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;">TEXT</code></a>columns.</p></blockquote>
<p>It did take a little bit of experimentation to get the syntax for the query correct in CakePHP as the query is a little different from the regular &#8220;<em>SELECT field FROM table WHERE somevalue = somevalue</em>&#8220;.</p>
<p>So, for this example I will use a MyISAM table called pages and search against the title, content and tags fields for the term&#8221; jquery web development&#8221;. You should substitute that term with your dynamically passed value in the code below.</p>
<p>Firstly I built the conditions for my query into a &#8220;params&#8221; array.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">$params['conditions'] = array(</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span> &#8216;MATCH(Track.title,Track.description,Track.tags)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span> AGAINST(&#8221;&#8216; . $kw_list . &#8216;&#8221; IN BOOLEAN MODE)&#8217;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span> );</div>
<blockquote><p>$params= array(&#8217;conditions&#8217; =&gt; array(<br />
&#8216;MATCH(Page.title,Page.description,Page.tags)<br />
AGAINST(&#8221;jquery web development&#8221; )&#8217; ));</p></blockquote>
<p>Finally a call to CakePHP&#8217;s native find method will perform the search:</p>
<blockquote><p>$this-&gt;Page-&gt;find(&#8217;all&#8217;,$params);</p></blockquote>
<p>One last note: MySQL full text search can be powerful when used correctly and a potential bottleneck when poorly implemented. I suggest reading <a href="http://dev.mysql.com/doc/refman/5.1/en/fulltext-boolean.html">the documentation</a> for further information and more advanced usage.</p>
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.wiseguysonly.com/2010/06/20/cakephp-full-text-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A health insurance example of how SEO is dead, long live Online Marketing.</title>
		<link>http://www.wiseguysonly.com/2010/06/07/seo-is-dead-long-live-online-marketing/</link>
		<comments>http://www.wiseguysonly.com/2010/06/07/seo-is-dead-long-live-online-marketing/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 10:17:00 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.wiseguysonly.com/?p=341</guid>
		<description><![CDATA[At Zumo Internet, when we started a new campaign for health insurance company, WPA one of the things we have noticed over the last year is that whilst SEO is not entirely dead, there are so many more avenues to explore when trying to boost traffic to websites.
For instance, we had to research the private [...]]]></description>
			<content:encoded><![CDATA[<p>At Zumo Internet, when we started a new campaign for <a href="http://www.wpa.org.uk">health insurance</a> company, WPA one of the things we have noticed over the last year is that whilst SEO is not entirely dead, there are so many more avenues to explore when trying to boost traffic to websites.</p>
<p>For instance, we had to research the <a href="http://yourprivatehealthinsurance.blogspot.com">private health insurance</a> industry to see exactly what services were offered and what users were likely to search for when they were trying to find <a href="http://privatemedicalinsurance.wordpress.com/2010/06/07/private-medical-insurance/">private medical insurance</a>. In doing so, we realised that there are a great number of concepts in the health insurance industry that were not understood to the leyman. Even the costs or the ability to use private medical insurance to fast track in the NHS were concepts new to us. <strong>So we were researchers in the medical insurance industry.</strong></p>
<p>Then we found ourselves having to compose press-releases, articles and surveys connected to the health insurance industry in order to help people better understand once they hit the site as well as change site copy to make a balance between discovery by search engines and human readability. <strong>So we were copywriters.</strong></p>
<p>Finally we had to get all this information into a well-presented and readable report showing what people were searching for when they were looking for medical insurance and what the effects of our works was. <strong>So were statisticians</strong>.</p>
<p>SEO seems such a misnomer for the work that goes into driving relevant traffic to sites. So we now opt for the label Online Marketing.</p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wiseguysonly.com/2010/06/07/seo-is-dead-long-live-online-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix the OSX Leopard Set up Assistant Loop Bug.</title>
		<link>http://www.wiseguysonly.com/2010/01/19/how-to-fix-the-osx-leopard-set-up-assistant-loop-bug/</link>
		<comments>http://www.wiseguysonly.com/2010/01/19/how-to-fix-the-osx-leopard-set-up-assistant-loop-bug/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 17:04:30 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.wiseguysonly.com/?p=322</guid>
		<description><![CDATA[Today, my G5 (Leopard) started displaying the Set Up Assistant everytime it booted. Even after completing setup it was impossible to access the GUI. It was held in a continuous.
If you get caught in the Leopard Setup Assistant Loop Bug, here is the way to get your Mac booting again with no loss of data.

Boot [...]]]></description>
			<content:encoded><![CDATA[<p>Today, my G5 (Leopard) started displaying the Set Up Assistant everytime it booted. Even after completing setup it was impossible to access the GUI. It was held in a continuous.</p>
<p>If you get caught in the Leopard Setup Assistant Loop Bug, here is the way to get your Mac booting again with no loss of data.</p>
<ol>
<li>Boot into Safe Mode by holding down the shift key just after you hear the first boot sound. This takes an eternity so be patient.</li>
<li><strong>Don&#8217;t log in to any account. Instead press the back arrow key once </strong>(this will highlight an account)<strong>.</strong></li>
<li>Then click the restart button.</li>
<li>Now just wait while your Mac performs some updates and then reboots as normal again.</li>
</ol>
<p>Even Macs break occasionally / rarely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wiseguysonly.com/2010/01/19/how-to-fix-the-osx-leopard-set-up-assistant-loop-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Select and Unselect All Checkboxes with jQuery</title>
		<link>http://www.wiseguysonly.com/2010/01/15/select-and-unselect-all-checkboxes-with-jquery/</link>
		<comments>http://www.wiseguysonly.com/2010/01/15/select-and-unselect-all-checkboxes-with-jquery/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 19:01:06 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.wiseguysonly.com/?p=308</guid>
		<description><![CDATA[I&#8217;ve been working with jQuery to spice up my interfaces for over 12 months now and figured it&#8217;s time to share some of the little techniques I&#8217;ve developed on the way.
The first is something I use quite alot when I am giving users the ability to administer lists of items in bulk. That including a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working with jQuery to spice up my interfaces for over 12 months now and figured it&#8217;s time to share some of the little techniques I&#8217;ve developed on the way.</p>
<p>The first is something I use quite alot when I am giving users the ability to administer lists of items in bulk. That including a checkbox that when checked sets the state of all the checkboxes beside a list of items to &#8220;checked&#8221;. Naturally unchecking it will uncheck all checkboxes. I&#8217;m sure you get the picture here&#8217;s the code based on two scenarios depending on your preference. But firstly you need to include the jQuery library in the head of your document (I grab mine straight from Google&#8217;s repository to save my bandwidth):</p>
<p><span id="more-308"></span></p>
<p><code>&lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"&gt;&lt;/script&gt;</code></p>
<p>and then somewhere in your document a controller checkbox that toggles all the others (note the call to toggleChecked when the state of the checkbox changes):</p>
<p><code>&lt;input type="checkbox" onclick="toggleChecked(this.checked)"&gt; Select / Deselect All</code></p>
<p>Now here are  two versions of the toggleChecked function dependent on the semantics of your document. The only real difference is the jQuery selector for your list checkboxes:</p>
<p><strong>1: All checkboxes have a class of  &#8220;checkbox&#8221; (&lt;input type=&#8221;checkbox&#8221; class=&#8221;checkbox&#8221; /&gt;)</strong><br />
<code>function toggleChecked(status) {<br />
$(".checkbox").each( function() {<br />
$(this).attr("checked",status);<br />
})<br />
}</code></p>
<p><strong>2: All the checkboxes are contained within a div with an arbitary id:</strong></p>
<p><code>&lt;div id="checkboxes"&gt;<br />
&lt;input type="checkbox" /&gt;<br />
&lt;input type="checkbox" /&gt;<br />
&lt;input type="checkbox" /&gt;<br />
&lt;/div&gt;</code></p>
<p>In this case the function would look like this:</p>
<p><code>function toggleChecked(status) {<br />
$("#checkboxes input").each( function() {<br />
$(this).attr("checked",status);<br />
})<br />
</code></p>
<p>Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wiseguysonly.com/2010/01/15/select-and-unselect-all-checkboxes-with-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A workaround for the CakePHP alphaNumeric issue</title>
		<link>http://www.wiseguysonly.com/2009/11/27/a-workaround-for-the-cakephp-alphanumeric-issue/</link>
		<comments>http://www.wiseguysonly.com/2009/11/27/a-workaround-for-the-cakephp-alphanumeric-issue/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 14:50:51 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.wiseguysonly.com/?p=278</guid>
		<description><![CDATA[Recently whilst building a CakePHP app on a shiny new server I noticed some unexpected behaviour when using an alphaNumeric rule to validate a model. Whatever I passed into the model returned false. That is to say that even a valid alphanumeric string threw up an exception. (if you haven&#8217;t already dived into CakePHP, you [...]]]></description>
			<content:encoded><![CDATA[<p>Recently whilst building a CakePHP app on a shiny new server I noticed some unexpected behaviour when using an alphaNumeric rule to validate a model. Whatever I passed into the model returned false. That is to say that even a valid alphanumeric string threw up an exception. (if you haven&#8217;t already dived into <a href="http://www.cakephp.org">CakePHP</a>, you should &#8211; it&#8217;s a rapid development framework based on <a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" title="Model View Controller">MVC</a>.)</p>
<p>The issue seems to be tied to PHP 5.1.2 and the way regular expressions are handled, however it seems the it may appear in other configurations too. Before I get to a workaround, note I haven&#8217;t levelled the &#8220;bug&#8221; word at either PHP nor CakePHP &#8211; for all I know it could be a difference of opinion on how something should be handled. What I do know is that I would rather harness CakePHP&#8217;s flexibility to create custom model rules than try upgrading my current live server PHP installation.</p>
<p>Here is an example of how you should be able to implement the alphaNumeric rule using validation in CakePHP based on a simpliefied model called &#8220;User&#8221;:<br />
class User extends AppModel</p>
<p>{<br />
<code>var $name = 'User';<br />
var $helpers = array('Form');<br />
var $validate = array(<br />
'username' =&gt; array(<br />
'loginRule-1' =&gt; array(<br />
<em> <strong>'rule' =&gt; 'alphaNumeric',</strong></em><br />
'last' =&gt; true,<br />
'message' =&gt; 'Only letters and numbers allowed'<br />
));<br />
}</code></p>
<p>The rule in bold italics above is the one that doesn&#8217;t always work. However this can be easily rectified with a custom rule built on a regular expression seeking out valid alphanumeric strings.</p>
<p>To achieve this the alphaNumeric rule just needs to be replaced with this:</p>
<p><code><strong><em>"rule" => array('custom', '/^[a-z0-9]*$/i'),</strong></em></code></p>
<p>Problem solved.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wiseguysonly.com/2009/11/27/a-workaround-for-the-cakephp-alphanumeric-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keep linux scripts running after you have closed a remote shell.</title>
		<link>http://www.wiseguysonly.com/2009/10/14/keep-linux-scripts-running-after-you-have-closed-a-remote-shell/</link>
		<comments>http://www.wiseguysonly.com/2009/10/14/keep-linux-scripts-running-after-you-have-closed-a-remote-shell/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 12:56:11 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.wiseguysonly.com/?p=267</guid>
		<description><![CDATA[I stumbled across this whilst importing 1.1TB of data from a server to Amazon S3 (more on that another day). What I wanted to achieve was to be able to ssh into my remote server, issue a command to push over 200,000 mp3&#8217;s up to Amazon and to be able to exit the shell and [...]]]></description>
			<content:encoded><![CDATA[<p>I stumbled across this whilst importing 1.1TB of data from a server to <a href="http://aws.amazon.com/s3">Amazon S3</a> (more on that another day). What I wanted to achieve was to be able to ssh into my remote server, issue a command to push over 200,000 mp3&#8217;s up to Amazon and to be able to exit the shell and keep the process running.</p>
<p>The answer lies in a command line tool called <code>screen</code>.</p>
<p>Screen allows you to start a process on a virtual screen, then detach that screen and do something else (including log out). You can also reattach your screen after logging out and logging in again.</p>
<p>If you dont have the screen command on your remote linux box, first install it either from source or using your favourite package manager. Then login into your remote box and run your desired command prefixed with &#8220;screen&#8221;. For example:</p>
<p><code>screen top</code></p>
<p>Now to detach the screen use CTRL+a followed by d. This will detach your screen and you can go about any other business, including quitting your remote session.</p>
<p>Reattaching you screen at any time is as simple as running the command:</p>
<p><code>screen -r</code></p>
<p>You can detach and reatach your screen as much as you want until your running process is finished or you kill it, at which point your virtual screen is killed too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wiseguysonly.com/2009/10/14/keep-linux-scripts-running-after-you-have-closed-a-remote-shell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>British Sign Language Support &#8211; New Zumo Internet Launch</title>
		<link>http://www.wiseguysonly.com/2009/09/22/british-sign-language-support-new-zumo-internet-launch/</link>
		<comments>http://www.wiseguysonly.com/2009/09/22/british-sign-language-support-new-zumo-internet-launch/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 14:20:59 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.wiseguysonly.com/?p=261</guid>
		<description><![CDATA[Over at my Web Development Agency in Spain we&#8217;ve been busy again and we are pretty chuffed with the results. Once again working with TMax Media we have built and just launched BSL Homework Support a website that offers resources, and assessments for anyone interested in learning sign language.
We cut the XHTML, wrote the CSS [...]]]></description>
			<content:encoded><![CDATA[<p>Over at my <a href="http://www.zumointernet.com">Web Development Agency in Spain</a> we&#8217;ve been busy again and we are pretty chuffed with the results. Once again working with TMax Media we have built and just launched <a href="http://www.bslsupport.org.uk/">BSL Homework Support</a> a website that offers resources, and assessments for anyone interested in learning sign language.</p>
<p>We cut the XHTML, wrote the CSS and used PHP and MySQL to power the online purchasing and content retrieval system. The site features thousands of video clips that we deliver using jQuery and some elegant third party applications such as Shadowbox and JWPlayer.</p>
<p>If you are looking for something special for your next web project, or you&#8217;re a media agency looking for a reliable and talented web development service, please email <a href="mailto:nfo@zumointernet.com">info@zumointernet.com</a> and we&#8217;ll let you know what we can do to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wiseguysonly.com/2009/09/22/british-sign-language-support-new-zumo-internet-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CEIP Mariana Pineda, Benalmadena, Arroyo de La Miel</title>
		<link>http://www.wiseguysonly.com/2009/09/10/ceip-mariana-pineda-benalmadena-arroyo-de-la-miel/</link>
		<comments>http://www.wiseguysonly.com/2009/09/10/ceip-mariana-pineda-benalmadena-arroyo-de-la-miel/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 13:04:57 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Life in Spain]]></category>

		<guid isPermaLink="false">http://www.wiseguysonly.com/2009/09/10/ceip-mariana-pineda-benalmadena-arroyo-de-la-miel/</guid>
		<description><![CDATA[Hopefully this may help someone else find the contact number for this school which is not correctly listed on either the Yellow Pages in Spain or the Junta de Andalucia&#8217;s website.
The telephone number is 951 293 997
In case you are wondering why it is so hard to find: the school is fairly new and is [...]]]></description>
			<content:encoded><![CDATA[<p>Hopefully this may help someone else find the contact number for this school which is not correctly listed on either the Yellow Pages in Spain or the Junta de Andalucia&#8217;s website.</p>
<p>The telephone number is <strong>951 293 997</strong></p>
<p>In case you are wondering why it is so hard to find: the school is fairly new and is listed as a plot of land still on the Junta&#8217;s site. I&#8217;m guessing the amount of paper work needed to get a website change actioned is far greater than the parent&#8217;s need to contact a school.</p>
<p><a href="http://www.juntadeandalucia.es/averroes/impe/web/centro?codigo=29005801&amp;idMenu=mC5">The official listing is here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wiseguysonly.com/2009/09/10/ceip-mariana-pineda-benalmadena-arroyo-de-la-miel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summer Fields School &#8211; New Zumo Internet Launch</title>
		<link>http://www.wiseguysonly.com/2009/09/03/summer-fields-school-new-zumo-internet-launch/</link>
		<comments>http://www.wiseguysonly.com/2009/09/03/summer-fields-school-new-zumo-internet-launch/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 14:56:46 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.wiseguysonly.com/?p=255</guid>
		<description><![CDATA[Whoops we did it again. Another Zumo programmed site has left the building, this time in the shiny coat of Summer Fields Prepartory School.
TMax Media designed the site and Zumo Internet cut the code and programmed the CMS and front end from start to finish with a smooth blend of XHTML, CSS, PHP, MySQL and [...]]]></description>
			<content:encoded><![CDATA[<p>Whoops we did it again. Another Zumo programmed site has left the building, this time in the shiny coat of<a href="http://www.summerfields.com"> Summer Fields Prepartory School</a>.</p>
<p>TMax Media designed the site and Zumo Internet cut the code and programmed the CMS and front end from start to finish with a smooth blend of XHTML, CSS, PHP, MySQL and jQuery. More reason to trust us with your web site development.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wiseguysonly.com/2009/09/03/summer-fields-school-new-zumo-internet-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with PHP&#8217;s simplexml and nodes with hyphens</title>
		<link>http://www.wiseguysonly.com/2009/07/21/working-with-phps-simplexml-and-nodes-with-hyphens/</link>
		<comments>http://www.wiseguysonly.com/2009/07/21/working-with-phps-simplexml-and-nodes-with-hyphens/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 16:06:16 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.wiseguysonly.com/?p=252</guid>
		<description><![CDATA[Here&#8217;s a quick GOTCHA that may save at least one developer some time. Recently whilst working with some XML to import music into an mp3 download site I came across an issue accessing the values of specific nodes through the simplexml object that I created. The value always threw up zero.
The issue lies in node [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick GOTCHA that may save at least one developer some time. Recently whilst working with some XML to import music into an mp3 download site I came across an issue accessing the values of specific nodes through the simplexml object that I created. The value always threw up zero.</p>
<p>The issue lies in node names containing hyphens, thus:</p>
<p>$object-&gt;album-title     returns     0</p>
<p>The answer is to wrap the object property (node name) containing the hyphen in curly braces.</p>
<p>$object-&gt;{&#8217;album-title&#8217;}     returns     &#8220;London Calling&#8221;</p>
<p>Here&#8217;s hoping that helps someone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wiseguysonly.com/2009/07/21/working-with-phps-simplexml-and-nodes-with-hyphens/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
