<?xml version="1.0" encoding="UTF-8" ?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>SharkEye Community</title>
<link>http://www.sharkeye.co.uk/forum/</link>
<description>www.sharkeye.co.uk</description>
<managingEditor>admin@sharkeye.co.u</managingEditor>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>operacesky.net phpbb3 rss generator</generator>
<language>en</language>
<lastBuildDate>Wed, 20 Aug 2008 07:11:57 GMT</lastBuildDate>
<atom:link href="http://www.sharkeye.co.uk/forum/rss.php" rel="self" type="application/rss+xml" />
<image>
	<url>http://www.sharkeye.co.uk/forum/rss.png</url>
	<title>SharkEye Community</title>
	<link>http://www.sharkeye.co.uk/forum/</link>
	<width>88</width>
	<height>31</height>
</image>
<item>
<title>[Web Designers &amp; Developers] Re: Dynamic PHP Tree Menu</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8693#p8693</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: Dynamic PHP Tree Menu&lt;br /&gt;
Posted: Tue Aug 19, 2008 9:20 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;blockquote&gt;&lt;div&gt;&lt;cite&gt;Paranoid Android wrote:&lt;/cite&gt;I've found a few code examples but they all seem to read the menu from an array and not from a dynamically created query. Should i be trying to read from the database into an array first?? Am i missing something??  am I doing the whole bloody thing wrong???  PMSL...&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;When you query the database your results will be put into an array... u then use this and loop through it to display teh results...&lt;br /&gt;&lt;br /&gt;So something like&lt;br /&gt;&lt;br /&gt;&lt;dl class="codebox"&gt;&lt;dt&gt;Code: &lt;a href="#" onclick="selectCode(this); return false;"&gt;Select all&lt;/a&gt;&lt;/dt&gt;&lt;dd&gt;&lt;code&gt;$result = mysql_query(&quot;SELECT * FROM news WHERE newsid='$newsid' &quot;,$connect);&lt;br /&gt;&lt;br /&gt;while($myrow = mysql_fetch_assoc($result))&lt;br /&gt;{&lt;br /&gt;echo $myrow&#91;'nameOfTableCol'&#93;;&lt;br /&gt;}&lt;/code&gt;&lt;/dd&gt;&lt;/dl&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1462</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8693#p8693</guid>
<pubDate>Tue, 19 Aug 2008 21:20:38 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Dynamic PHP Tree Menu</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8692#p8692</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: Dynamic PHP Tree Menu&lt;br /&gt;
Posted: Tue Aug 19, 2008 9:15 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
interesting.... not sure i understand - but...&lt;br /&gt;&lt;br /&gt;What i would do is create a page (mypage.php) which lists all the distinct&lt;br /&gt;&lt;br /&gt;SELECT DISTINCT(Destinct) FROM myTable ORDER BY Destinct DESC&lt;br /&gt;(not sure if sql is correct for distinct)&lt;br /&gt;&lt;br /&gt;Then for each row print this&lt;br /&gt;echo '&lt;a href=&quot;page.php?q=; . $row['Distinct'] . '&quot;&gt;' . $row['Distinct'] . '&lt;/a&gt;';&lt;br /&gt;&lt;br /&gt;Then something like&lt;br /&gt;if (!empty($_GET['Destinct']))&lt;br /&gt;{&lt;br /&gt;// Do this quiry and get all the parishes for the selected destinct&lt;br /&gt;SELECT * FROM myTable WHERE Destinct = '$myDestinct' ORDER BY Parish DESC&lt;br /&gt;// print each title and link to fiel name&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;done... hummmmm not the cleanest of posts but i have just quickly put that together as watching BB... post back if you need more code or explination tomorrow....&lt;br /&gt;&lt;br /&gt;Thats assuming i have go the right idea...!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1462</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8692#p8692</guid>
<pubDate>Tue, 19 Aug 2008 21:15:25 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Dynamic PHP Tree Menu</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8691#p8691</link>
<description>Author: Paranoid Android&lt;br /&gt;
Post subject: Dynamic PHP Tree Menu&lt;br /&gt;
Posted: Tue Aug 19, 2008 5:53 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
OK..  a bit of background first...&lt;br /&gt;I work for a National Park and there is a database of public 'rights of way' changes that have been made over the years. These were originally all stored on paper but have recently been made into pdf's as the government have decreed that they have to be made available to the public on our website. Enter yours truly..! &lt;img src="./images/smilies/icon_confused.gif" alt=":?" title="Confused" /&gt; &lt;br /&gt;So.. a (very) simplified version of the database looks like this:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold"&gt;District.......................Parish....................Filename&lt;/span&gt;&lt;br /&gt;Scarborough..................Westerdale..............townendfarm.pdf&lt;br /&gt;Scarborough..................Harwood Dale...........anotherfarm.pdf&lt;br /&gt;Scarborough..................Harwood Dale............anotherbloodyfarm.pdf&lt;br /&gt;Rydale.........................Bransdale................anotherpath.pdf&lt;br /&gt;Rydale.........................Rievaulx.................someotherpath.pdf&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;you get the idea...!?  &lt;br /&gt;So..   what &lt;span style="font-weight: bold"&gt;&lt;span style="font-style: italic"&gt;&quot;they&quot;&lt;/span&gt;&lt;/span&gt; have asked for is a tree menu where the first level is the &lt;span style="font-weight: bold"&gt;district &lt;/span&gt;and when you click that it opens up the &lt;span style="font-weight: bold"&gt;Parishes &lt;/span&gt;underneath that, and this in turn shows the Rights of Way pdf associated with this amendment.&lt;br /&gt;&lt;br /&gt;I've found a few code examples but they all seem to read the menu from an array and not from a dynamically created query. Should i be trying to read from the database into an array first?? Am i missing something??  am I doing the whole bloody thing wrong???  PMSL...&lt;br /&gt;&lt;br /&gt;Any advice or direction to a poor I.T. bod from you php guru's???&lt;br /&gt;&lt;br /&gt;****runs back to Google****&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Paranoid Android)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1462</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8691#p8691</guid>
<pubDate>Tue, 19 Aug 2008 17:53:06 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] Re: Broadband ISP's</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8690#p8690</link>
<description>Author: Richyg01&lt;br /&gt;
Post subject: Re: Broadband ISP's&lt;br /&gt;
Posted: Tue Aug 19, 2008 8:26 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
No mate, they dont have Sky, but I said it would be a good time to get it if they want to update their TV Choices!&lt;br /&gt;&lt;br /&gt;The other problem they have is they are a long way from the telephone exchange so their speed ability is very poor!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Richyg01)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1461</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8690#p8690</guid>
<pubDate>Tue, 19 Aug 2008 08:26:37 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] Re: Broadband ISP's</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8689#p8689</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: Broadband ISP's&lt;br /&gt;
Posted: Tue Aug 19, 2008 8:08 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Boooo!&lt;br /&gt;&lt;br /&gt;Glad your advising to get rid of AOL!&lt;br /&gt;&lt;br /&gt;None-cable... DOH! Do they have sky? I would have said to go with Virgin at the moment... cable is so much better than adsl in my opinion...&lt;br /&gt;&lt;br /&gt;BT - I have had no problems with the service... the customer service is sh*t but the server has never gone down... however speed is not worth the money at the moment - they are just too expensive.&lt;br /&gt;&lt;br /&gt;Gosh... I am not sure to be honest...&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1461</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8689#p8689</guid>
<pubDate>Tue, 19 Aug 2008 08:08:29 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] Broadband ISP's</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8688#p8688</link>
<description>Author: Richyg01&lt;br /&gt;
Post subject: Broadband ISP's&lt;br /&gt;
Posted: Mon Aug 18, 2008 2:38 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I am posting on behalf of my other half's mam.&lt;br /&gt;&lt;br /&gt;She is currently on AOL and is having constant connectivity issues, hence I have told her to change ISP.&lt;br /&gt;&lt;br /&gt;Can anyone make reccommendations?&lt;br /&gt;&lt;br /&gt;They are in a non-cable area btw.&lt;br /&gt;&lt;br /&gt;Cheers&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Richyg01)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1461</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8688#p8688</guid>
<pubDate>Mon, 18 Aug 2008 14:38:29 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] Re: iphone</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8687#p8687</link>
<description>Author: Richyg01&lt;br /&gt;
Post subject: Re: iphone&lt;br /&gt;
Posted: Mon Aug 18, 2008 2:33 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Sounds just the same as you with anything of yours mate!!!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Richyg01)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1457</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8687#p8687</guid>
<pubDate>Mon, 18 Aug 2008 14:33:08 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] Transcription software</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8686#p8686</link>
<description>Author: blowfish&lt;br /&gt;
Post subject: Transcription software&lt;br /&gt;
Posted: Mon Aug 18, 2008 9:44 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Was wondering if anyone knew of any free transcription software.&lt;br /&gt;&lt;br /&gt;I am about to start my interviews for my thesis, and for the first time am using a digital voice recorder (instead of tape), so need some software that will allow me to slow down the speed of the sound so I can transcribe it, and something with &quot;hot keys&quot; so i can control the sound file (i.e. pause rewind etc) while using word!&lt;br /&gt;&lt;br /&gt;I was told about some software called NCH Express Scribe Transcription Playback Software, but unfortunately it is not free, it has a 14 days trial then will cost me lots of money!&lt;br /&gt;&lt;br /&gt;Help!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (blowfish)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1460</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8686#p8686</guid>
<pubDate>Mon, 18 Aug 2008 09:44:21 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8685#p8685</link>
<description>Author: William316&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Sun Aug 17, 2008 1:15 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
No - I had no part in the design of the site - I have been providing feedback on how the site works and what can be improved, what really works and so on. It's designed as an enhanced social networking and activist platform, to run alongside other Amnesty sites and platforms. I particularly like the Bookmark button that can be dragged and dropped onto a toolbar - cool:)&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (William316)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8685#p8685</guid>
<pubDate>Sun, 17 Aug 2008 13:15:20 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] Re: iphone</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8684#p8684</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: iphone&lt;br /&gt;
Posted: Sun Aug 17, 2008 12:53 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
my parents came over to visit yesterday and my dad got very excited as he wants an iphone... i could see fiona starting to shake as other people got excited over her phone... as soon as she got it back in her hands she relaxed again...&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1457</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8684#p8684</guid>
<pubDate>Sun, 17 Aug 2008 12:53:46 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8683#p8683</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Sun Aug 17, 2008 12:51 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Give us some more info dude... is this something you have help setup? What is the aim of the site? &lt;br /&gt;&lt;br /&gt;The desin of the site looks good at first glance... i dont have much time now so i will have a better look at work where I have tesing stuff setup...&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8683#p8683</guid>
<pubDate>Sun, 17 Aug 2008 12:51:42 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8682#p8682</link>
<description>Author: William316&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Fri Aug 15, 2008 6:56 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
the site is live! I would appreciate an expert opinion on the new Activist Platform at &lt;a href="http://aao.nbwd.co.uk" class="postlink"&gt;http://aao.nbwd.co.uk&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (William316)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8682#p8682</guid>
<pubDate>Fri, 15 Aug 2008 18:56:34 GMT</pubDate>
</item>
<item>
<title>[Share] Star Trek</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8681#p8681</link>
<description>Author: William316&lt;br /&gt;
Post subject: Star Trek&lt;br /&gt;
Posted: Fri Aug 15, 2008 1:26 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
This is cute: &lt;a href="http://news.zdnet.com/2424-9595_22-216370.html" class="postlink"&gt;http://news.zdnet.com/2424-9595_22-216370.html&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (William316)</author>
<category>Share</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=22&amp;t=1459</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8681#p8681</guid>
<pubDate>Fri, 15 Aug 2008 13:26:18 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8680#p8680</link>
<description>Author: Tanone&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Fri Aug 15, 2008 11:54 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I am fairly sure I can find a few pictures to add to the site.. I grew up in the 80's, NOT a pretty decade!!!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Tanone)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8680#p8680</guid>
<pubDate>Fri, 15 Aug 2008 11:54:16 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8679#p8679</link>
<description>Author: William316&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Fri Aug 15, 2008 8:27 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
lol great - I'll look out for it:) - the soft launch has been delayed until next week, the beavering Betatesters have found lots to revise so I guess the revised code is going to take longer than expected. It is a great site though!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (William316)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8679#p8679</guid>
<pubDate>Fri, 15 Aug 2008 08:27:19 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8678#p8678</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Fri Aug 15, 2008 8:03 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Should have been one 's' BUS.... big poster on the side of a bus!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8678#p8678</guid>
<pubDate>Fri, 15 Aug 2008 08:03:42 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8677#p8677</link>
<description>Author: William316&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Thu Aug 14, 2008 10:30 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Whats a Buss campaign?&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (William316)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8677#p8677</guid>
<pubDate>Thu, 14 Aug 2008 10:30:04 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] php &amp; pdf?</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8676#p8676</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: php &amp; pdf?&lt;br /&gt;
Posted: Thu Aug 14, 2008 10:29 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Has anyone done any work with creating pfds using php?&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1458</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8676#p8676</guid>
<pubDate>Thu, 14 Aug 2008 10:29:07 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8675#p8675</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Thu Aug 14, 2008 7:55 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Project going great thanks... had a bit of time on other projects recently so got to get back on it today... we just finished &lt;!-- w --&gt;&lt;a class="postlink" href="http://www.yakuzapic.com"&gt;http://www.yakuzapic.com&lt;/a&gt;&lt;!-- w --&gt; yesterday... its to go alongside a buss campaign starting next week...&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8675#p8675</guid>
<pubDate>Thu, 14 Aug 2008 07:55:35 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8674#p8674</link>
<description>Author: William316&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Wed Aug 13, 2008 10:21 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
How is this project going? Although the code functions are several light years over my head I grasped some of it - I've been Betatesting a new site for Amnesty over the past few days - due for soft launch tomorrow. I won't spoil the surprise by telling you what it's called or what it does, but I will post a link as soon as it's live.&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (William316)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8674#p8674</guid>
<pubDate>Wed, 13 Aug 2008 22:21:02 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: I think Mark may have a new job..</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8673#p8673</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: I think Mark may have a new job..&lt;br /&gt;
Posted: Wed Aug 13, 2008 12:57 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
This is great news! Is Mark enjoying it then?&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1451</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8673#p8673</guid>
<pubDate>Wed, 13 Aug 2008 12:57:12 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: I think Mark may have a new job..</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8672#p8672</link>
<description>Author: Tanone&lt;br /&gt;
Post subject: Re: I think Mark may have a new job..&lt;br /&gt;
Posted: Wed Aug 13, 2008 11:52 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
So its week 3.. The routine appears to be &lt;br /&gt;&lt;br /&gt;Monday.. Sheffield&lt;br /&gt;Tuesday..Glasgow OR Cardiff on alt weeks&lt;br /&gt;Wednesday.. Chester &amp; Manchester&lt;br /&gt;Thursday.. Kettering &amp; Leicester &amp; Nottingham&lt;br /&gt;Friday.. Bradford&lt;br /&gt;&lt;br /&gt;They pay on the 8th and he got a weeks wage on payday.. so no working a week or a month in hand..&lt;br /&gt;He's doing ok and he appears to be enjoying it..  He even reckons hes losing some weight..&lt;br /&gt;I drop him off in the morning and pick him up on my way home. As I work a 7am-7pm flexi system I can pretty much come and go as and when I want..Its working out ok.. Looking forward to his first full paycheck!!!!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Tanone)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1451</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8672#p8672</guid>
<pubDate>Wed, 13 Aug 2008 11:52:39 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] Re: iphone</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8671#p8671</link>
<description>Author: blowfish&lt;br /&gt;
Post subject: Re: iphone&lt;br /&gt;
Posted: Tue Aug 12, 2008 3:47 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
to be fair, there has been a bit of bickering over the iphone...&quot;give it back&quot; &quot;no i'm using it&quot; &quot;i was using it first&quot;.&lt;br /&gt;&lt;br /&gt;Classic. All good natured of course&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (blowfish)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1457</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8671#p8671</guid>
<pubDate>Tue, 12 Aug 2008 15:47:11 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] Re: iphone</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8670#p8670</link>
<description>Author: Richyg01&lt;br /&gt;
Post subject: Re: iphone&lt;br /&gt;
Posted: Tue Aug 12, 2008 1:09 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I aint suprised!&lt;br /&gt;&lt;br /&gt;I wouldnt want all your sticky fingerprints all over (and I mean all over) my shiny new phone!!  &lt;img src="./images/smilies/icon_razz.gif" alt=":P" title="Razz" /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Richyg01)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1457</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8670#p8670</guid>
<pubDate>Tue, 12 Aug 2008 13:09:57 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] Re: iphone</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8669#p8669</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: iphone&lt;br /&gt;
Posted: Mon Aug 11, 2008 2:57 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I am lucky if I get a look at it!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1457</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8669#p8669</guid>
<pubDate>Mon, 11 Aug 2008 14:57:40 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] Re: iphone</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8668#p8668</link>
<description>Author: Richyg01&lt;br /&gt;
Post subject: Re: iphone&lt;br /&gt;
Posted: Mon Aug 11, 2008 11:41 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
So you mean you have been able to keep it out of James's clutches long enough to play with it!?  &lt;img src="./images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy" /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Richyg01)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1457</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8668#p8668</guid>
<pubDate>Mon, 11 Aug 2008 11:41:12 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] Re: iphone</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8667#p8667</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: iphone&lt;br /&gt;
Posted: Mon Aug 11, 2008 7:57 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
She has!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1457</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8667#p8667</guid>
<pubDate>Mon, 11 Aug 2008 07:57:43 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: G'day!</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8666#p8666</link>
<description>Author: iamian&lt;br /&gt;
Post subject: Re: G'day!&lt;br /&gt;
Posted: Sat Aug 09, 2008 9:12 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
we keep trying to stock up!!&lt;br /&gt;&lt;br /&gt;it keeps going missing somehow tho...?  &lt;img src="./images/smilies/icon_neutral.gif" alt=":|" title="Neutral" /&gt; &lt;br /&gt;&lt;br /&gt;that's cool about you and Fi... i'm sure it won't be too long before we hear the pitter patter of tiny.......................&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;..........paws  &lt;img src="./images/smilies/icon_wink.gif" alt=":wink:" title="Wink" /&gt; &lt;br /&gt;&lt;br /&gt;you getting a cat or a dog or is the madness of jack all you need??  &lt;img src="./images/smilies/icon_razz.gif" alt=":P" title="Razz" /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (iamian)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1455</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8666#p8666</guid>
<pubDate>Sat, 09 Aug 2008 21:12:31 GMT</pubDate>
</item>
<item>
<title>[RantEye] Re: Tax (ANGRY)</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8665#p8665</link>
<description>Author: blowfish&lt;br /&gt;
Post subject: Re: Tax (ANGRY)&lt;br /&gt;
Posted: Fri Aug 08, 2008 5:28 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;blockquote&gt;&lt;div&gt;&lt;cite&gt;Paranoid Android wrote:&lt;/cite&gt;&lt;br /&gt;&lt;br /&gt;ergo I shouldn't get involved unless acompanied by a therapist...&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I'm here Phillip...shall we begin?&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (blowfish)</author>
<category>RantEye</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=21&amp;t=1446</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8665#p8665</guid>
<pubDate>Fri, 08 Aug 2008 17:28:17 GMT</pubDate>
</item>
<item>
<title>[Technology &amp; Gadgets] iphone</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8664#p8664</link>
<description>Author: blowfish&lt;br /&gt;
Post subject: iphone&lt;br /&gt;
Posted: Fri Aug 08, 2008 5:26 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Oh my god, i freaking &lt;span style="font-size: 150%; line-height: 116%;"&gt;&lt;span style="color: #FF0000"&gt;love&lt;/span&gt;&lt;/span&gt; my new iphone! seriously! I got it yesterday and have been obsessed with it ever since! &lt;br /&gt;&lt;br /&gt;AAAAARRRRRRRGGGGGGHHHHH&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (blowfish)</author>
<category>Technology &amp; Gadgets</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=20&amp;t=1457</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8664#p8664</guid>
<pubDate>Fri, 08 Aug 2008 17:26:41 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: Congrats to Mr Sharkeye and Blowfish</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8663#p8663</link>
<description>Author: blowfish&lt;br /&gt;
Post subject: Re: Congrats to Mr Sharkeye and Blowfish&lt;br /&gt;
Posted: Fri Aug 08, 2008 5:25 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
hey, thanks tan. I would definitely like us to have a house warming party! i know james has been here for a while, but i reckon it would be ok to have a house warming now as he never had one!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (blowfish)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1456</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8663#p8663</guid>
<pubDate>Fri, 08 Aug 2008 17:25:08 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8662#p8662</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Fri Aug 08, 2008 8:06 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Its a good start... just wanted to start to think about this sort of thing for future version of dynamic websites... just incase trafic increases on any of them... I am building a ecommerce system (basic at the moment) and I was thinking about doing this with the cateloge of products... will be in a later version &lt;img src="./images/smilies/icon_smile.gif" alt=":-)" title="Smile" /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8662#p8662</guid>
<pubDate>Fri, 08 Aug 2008 08:06:36 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8661#p8661</link>
<description>Author: Jensen&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Fri Aug 08, 2008 12:27 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Well it really does depend on the site you are dealing with.&lt;br /&gt;&lt;br /&gt;For instance, a news page. The content is updated lets say twice a day, so for every time somebody visits the news page it does a query.. this is crazy! query's that are not needed.&lt;br /&gt;&lt;br /&gt;So what you do to get around doing a query every time is use ob_start(); and ob_end_clean();&lt;br /&gt;I will give you the basics in simple steps.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold"&gt;Step 1.&lt;/span&gt;&lt;br /&gt;Check if the cache fileexists in the cache folder. So our cached file for news is going to be called newspage.html. If it doesnt go to step 3&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold"&gt;Step 2.&lt;/span&gt;&lt;br /&gt;Use filemtime(&quot;cache/newspage.html&quot;); to get the timestamp of when the file was last modified.. compare it to the current time and work out the difference, so if its let say older then 5 hours go to Step 3.. &lt;span style="font-weight: bold"&gt;If its less then just include the file&lt;/span&gt;. If not go to step 3&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold"&gt;Step 3.&lt;/span&gt;&lt;br /&gt;use ob_start(); at the top of the code and ob_end_clean() at the end.&lt;br /&gt;Run the query and then use $bufferContent = ob_get_contents(); and save the $bufferContent to the cache file &quot;newspage.html&quot;&lt;br /&gt;&lt;br /&gt;Now if somebody would like to update, add etc then you could simply create the cache file after the new entry.. so you always have an upto date version.&lt;br /&gt;&lt;br /&gt;This is a very basic example, it is 01:24am and I am very tired... I hope this helps or at least gives you an idea of what to do.&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Jensen)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8661#p8661</guid>
<pubDate>Fri, 08 Aug 2008 00:27:00 GMT</pubDate>
</item>
<item>
<title>[Web Designers &amp; Developers] Re: Creation of own CMS</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8660#p8660</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: Creation of own CMS&lt;br /&gt;
Posted: Thu Aug 07, 2008 9:44 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;blockquote&gt;&lt;div&gt;&lt;cite&gt;Jensen wrote:&lt;/cite&gt;TIP: Cache your content for the ultimate CMS system.  You want less sql queries.&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;You got any further info on how is best to do this mate?&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Web Designers &amp; Developers</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=14&amp;t=1368</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8660#p8660</guid>
<pubDate>Thu, 07 Aug 2008 21:44:18 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: Congrats to Mr Sharkeye and Blowfish</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8659#p8659</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: Congrats to Mr Sharkeye and Blowfish&lt;br /&gt;
Posted: Thu Aug 07, 2008 9:41 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Yer might do &lt;img src="./images/smilies/icon_wink.gif" alt=";-)" title="Wink" /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1456</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8659#p8659</guid>
<pubDate>Thu, 07 Aug 2008 21:41:45 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: adverts on sharkeye</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8658#p8658</link>
<description>Author: Paranoid Android&lt;br /&gt;
Post subject: Re: adverts on sharkeye&lt;br /&gt;
Posted: Thu Aug 07, 2008 2:29 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
(although it does slightly piss me off that the ads open in the current SE window and not to a new one (or new tab) that i can look at after i finish on SE)&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Paranoid Android)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1351</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8658#p8658</guid>
<pubDate>Thu, 07 Aug 2008 14:29:31 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: adverts on sharkeye</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8657#p8657</link>
<description>Author: Paranoid Android&lt;br /&gt;
Post subject: Re: adverts on sharkeye&lt;br /&gt;
Posted: Thu Aug 07, 2008 2:27 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;blockquote&gt;&lt;div&gt;&lt;cite&gt;SharkEye wrote:&lt;/cite&gt;The adverts will be targeted at the user... so click click click!&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Hmm  targeted eh??  I always get the &quot;Do you need to start a new carreer???&quot;&lt;br /&gt;&lt;br /&gt;Cheers !!!   &lt;img src="./images/smilies/icon_confused.gif" alt=":?" title="Confused" /&gt; &lt;br /&gt;&lt;br /&gt;(still clicked tho)&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Paranoid Android)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1351</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8657#p8657</guid>
<pubDate>Thu, 07 Aug 2008 14:27:29 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: Congrats to Mr Sharkeye and Blowfish</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8656#p8656</link>
<description>Author: Paranoid Android&lt;br /&gt;
Post subject: Re: Congrats to Mr Sharkeye and Blowfish&lt;br /&gt;
Posted: Thu Aug 07, 2008 2:25 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
COOOOOL&lt;br /&gt;&lt;br /&gt;Are you gonna build your log burner so we can all stand round it.??  &lt;img src="./images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy" /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Paranoid Android)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1456</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8656#p8656</guid>
<pubDate>Thu, 07 Aug 2008 14:25:29 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: Congrats to Mr Sharkeye and Blowfish</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8655#p8655</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: Congrats to Mr Sharkeye and Blowfish&lt;br /&gt;
Posted: Thu Aug 07, 2008 11:59 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Thanks very much... its something I have thought about and I am guessing the answer will be yes there will be one and yes you will be invited... We need to sort a load of things out first so who knows when it will be...&lt;br /&gt;&lt;br /&gt;Thanks &lt;img src="./images/smilies/icon_smile.gif" alt=":-)" title="Smile" /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1456</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8655#p8655</guid>
<pubDate>Thu, 07 Aug 2008 11:59:19 GMT</pubDate>
</item>
<item>
<title>[General Chat] Congrats to Mr Sharkeye and Blowfish</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8654#p8654</link>
<description>Author: Tanone&lt;br /&gt;
Post subject: Congrats to Mr Sharkeye and Blowfish&lt;br /&gt;
Posted: Thu Aug 07, 2008 11:23 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Congratulations, &lt;br /&gt;&lt;br /&gt;Just read that you had moved in together  thats great news &lt;img src="./images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy" /&gt;  &lt;img src="./images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy" /&gt; &lt;br /&gt;&lt;br /&gt;So does she get her own house warming party...??and are we all invited? &lt;img src="./images/smilies/icon_eek.gif" alt=":shock:" title="Shocked" /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Tanone)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1456</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8654#p8654</guid>
<pubDate>Thu, 07 Aug 2008 11:23:13 GMT</pubDate>
</item>
<item>
<title>[Share] Re: Sat Nav</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8653#p8653</link>
<description>Author: Tanone&lt;br /&gt;
Post subject: Re: Sat Nav&lt;br /&gt;
Posted: Thu Aug 07, 2008 11:18 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
stupid thing doesnt actually charge fully on the docking station...... It charges enough to use it, but doesnt get enough charge to actually link to PC.. How weird is that!!!?&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Tanone)</author>
<category>Share</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=22&amp;t=1447</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8653#p8653</guid>
<pubDate>Thu, 07 Aug 2008 11:18:43 GMT</pubDate>
</item>
<item>
<title>[Share] Re: Sat Nav</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8652#p8652</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: Sat Nav&lt;br /&gt;
Posted: Thu Aug 07, 2008 7:40 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Glad you managed to get one... cannot wait for the review!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>Share</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=22&amp;t=1447</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8652#p8652</guid>
<pubDate>Thu, 07 Aug 2008 07:40:24 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: adverts on sharkeye</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8651#p8651</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: adverts on sharkeye&lt;br /&gt;
Posted: Thu Aug 07, 2008 7:39 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
The adverts will be targeted at the user... so click click click!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1351</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8651#p8651</guid>
<pubDate>Thu, 07 Aug 2008 07:39:50 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: G'day!</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8650#p8650</link>
<description>Author: SharkEye&lt;br /&gt;
Post subject: Re: G'day!&lt;br /&gt;
Posted: Thu Aug 07, 2008 7:38 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi Ian, really good to see you back on the SEC... glad your well and having fun.&lt;br /&gt;&lt;br /&gt;Biggest news over here (for me) is Fiona moving in! Its all gone well and we are both loving it...&lt;br /&gt;&lt;br /&gt;When we save some money we will be sure to come over... might as well start stocking up on wine now &lt;img src="./images/smilies/icon_wink.gif" alt=";-)" title="Wink" /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (SharkEye)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1455</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8650#p8650</guid>
<pubDate>Thu, 07 Aug 2008 07:38:32 GMT</pubDate>
</item>
<item>
<title>[General Chat] G'day!</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8649#p8649</link>
<description>Author: iamian&lt;br /&gt;
Post subject: G'day!&lt;br /&gt;
Posted: Thu Aug 07, 2008 5:47 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Long time not see!&lt;br /&gt;&lt;br /&gt;i hadn't put the old eye in my bookmarks for my new laptop and in the commotion managed to forget about it for a few months!!  &lt;img src="./images/smilies/icon_eek.gif" alt=":shock:" title="Shocked" /&gt; &lt;br /&gt;&lt;br /&gt;So how is everyone? how is boro/the north east...?&lt;br /&gt;&lt;br /&gt;Auckland is good! wine is sooooooooooooooo cheap here... i may die. haha!&lt;br /&gt;&lt;br /&gt;when is everyone coming over to visit then???&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (iamian)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1455</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8649#p8649</guid>
<pubDate>Thu, 07 Aug 2008 05:47:10 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: adverts on sharkeye</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8648#p8648</link>
<description>Author: iamian&lt;br /&gt;
Post subject: Re: adverts on sharkeye&lt;br /&gt;
Posted: Thu Aug 07, 2008 5:42 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
the adverts are for NZ stuff! how cool!&lt;br /&gt;&lt;br /&gt;not the google adsense ones... like animation ones and everything... or is that just google 2.0?&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (iamian)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1351</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8648#p8648</guid>
<pubDate>Thu, 07 Aug 2008 05:42:32 GMT</pubDate>
</item>
<item>
<title>[Share] Re: Sat Nav</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8647#p8647</link>
<description>Author: Tanone&lt;br /&gt;
Post subject: Re: Sat Nav&lt;br /&gt;
Posted: Wed Aug 06, 2008 2:51 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
All charged up and ready to go.... shiny shiny!!!!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Tanone)</author>
<category>Share</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=22&amp;t=1447</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8647#p8647</guid>
<pubDate>Wed, 06 Aug 2008 14:51:05 GMT</pubDate>
</item>
<item>
<title>[Share] Re: Sat Nav</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8646#p8646</link>
<description>Author: Paranoid Android&lt;br /&gt;
Post subject: Re: Sat Nav&lt;br /&gt;
Posted: Wed Aug 06, 2008 12:04 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hurrah..!!   lol  good work.&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Paranoid Android)</author>
<category>Share</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=22&amp;t=1447</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8646#p8646</guid>
<pubDate>Wed, 06 Aug 2008 12:04:12 GMT</pubDate>
</item>
<item>
<title>[General Chat] Re: Edinburgh Fringe</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8645#p8645</link>
<description>Author: William316&lt;br /&gt;
Post subject: Re: Edinburgh Fringe&lt;br /&gt;
Posted: Wed Aug 06, 2008 8:24 am&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I've been at the Fringe since Sunday Evening and it has been great - one problem with today (Wednesday) it's pouring with RAIN : nnnnnooooooooooooo - this means Taxi's everywhere - I am working on two plays, one in the afternoon and one in the evening and they are a little distance apart - never mind, it is a fantastic city and just being here is experience enough&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (William316)</author>
<category>General Chat</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=1&amp;t=1442</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8645#p8645</guid>
<pubDate>Wed, 06 Aug 2008 08:24:35 GMT</pubDate>
</item>
<item>
<title>[Share] Re: Sat Nav</title>
<link>http://www.sharkeye.co.uk/forum/viewtopic.php?p=8644#p8644</link>
<description>Author: Tanone&lt;br /&gt;
Post subject: Re: Sat Nav&lt;br /&gt;
Posted: Tue Aug 05, 2008 8:06 pm&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I did it, I stretched.. It will be delivered to work tomorrow so I will get to play with it for a short while before handing it over to Mark!!!&lt;/span&gt;&lt;br /&gt;
</description>
<author>info@operacesky.net (Tanone)</author>
<category>Share</category>
<comments>http://www.sharkeye.co.uk/forum/posting.php?mode=reply&amp;f=22&amp;t=1447</comments>
<guid isPermaLink="true">http://www.sharkeye.co.uk/forum/viewtopic.php?p=8644#p8644</guid>
<pubDate>Tue, 05 Aug 2008 20:06:50 GMT</pubDate>
</item>
</channel>
</rss>