<?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>FC Software Blog</title>
	<atom:link href="http://www.fcsoftware.co.uk/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.fcsoftware.co.uk/blog</link>
	<description>Email Marketing, CRM Solutions, Asset management, Campaign Tracking</description>
	<lastBuildDate>Wed, 11 Aug 2010 12:27:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>MySQL Date format and PHP</title>
		<link>http://www.fcsoftware.co.uk/blog/?p=42</link>
		<comments>http://www.fcsoftware.co.uk/blog/?p=42#comments</comments>
		<pubDate>Wed, 11 Aug 2010 12:22:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[code snippet]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.fcsoftware.co.uk/blog/?p=42</guid>
		<description><![CDATA[This brilliant little function in effectively a single line converts your mysql format date into a UK format date without you needing to wrap that entire line of code around every date you spit out.]]></description>
			<content:encoded><![CDATA[<p>This is just a very quick blog entry to provide a little snippet of code and hopefully help some people.</p>
<p>I offer coding help and advice on several PHP forms for beginners to the language.  One of the common problems they have seems to be date/time stamps and MySQL format and handling.  This seems to be especially relevant to UK coders where our dates take the format dd-mm-yyyy whereas MySQL stores the date in yyyy-mm-dd HH:mm:ss.</p>
<p>PHP is a wonderful language that makes working with dates etc actually very easy.  To resolve the format of date/times from MySQL to a more UK centric format I created a very simple function</p>
<pre><code><code>function mysql2uk($date) {
      return date('d-m-Y H:i:s',strtotime($date));
} </code></code></pre>
</php<br />
This brilliant little function in effectively a single line converts your mysql format date into a UK format date without you needing to wrap that entire line of code around every date you spit out.</p>
<p>So to use it your php page would simply be something like this</p>
<pre>&lt;?php</pre>
<pre><code><code>function mysql2uk($date) {
 return date('d-m-Y H:i:s',strtotime($date));
} </code></code></pre>
<pre>$sql ="select * from table";</pre>
<pre>$result = mysql_query($sql) or die();</pre>
<pre>$values = mysql_fetch_row($result);</pre>
<pre>echo mysql2uk($values['column']);
</pre>
<pre>?&gt;</pre>
<p>And as easy as that your date is now in a UK format.</p>
<p>You can edit the format by changing the 'd-m-Y H:i:s" part of the function and to save you having to have the function at the top of everyone of your pages you can put it in an include file and just include that file on your site/pages where you want the function available.</p>
<p>Hope this little snippet helps some.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fcsoftware.co.uk/blog/?feed=rss2&amp;p=42</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>B2B CRM demo system now online</title>
		<link>http://www.fcsoftware.co.uk/blog/?p=39</link>
		<comments>http://www.fcsoftware.co.uk/blog/?p=39#comments</comments>
		<pubDate>Fri, 23 Apr 2010 10:40:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CRM]]></category>
		<category><![CDATA[B2B CRM]]></category>
		<category><![CDATA[B2B CRM Demo]]></category>
		<category><![CDATA[CRM Demo]]></category>
		<category><![CDATA[FC CRM]]></category>
		<category><![CDATA[FC CRM Demo]]></category>

		<guid isPermaLink="false">http://www.fcsoftware.co.uk/blog/?p=39</guid>
		<description><![CDATA[FC CRM Demo Arrives]]></description>
			<content:encoded><![CDATA[<p>Its been a while coming but its finally here .</p>
<p>You can now take a live demo of our B2B CRM system by visiting http://b2b.fcsoftware.co.uk</p>
<p>There are a few things you need to know first though.</p>
<ul>
<li>Login details are on the login page for both admin and standard users.</li>
<li>Email functionality is disabled in the demo.</li>
<li>User and group editing/adding/deleting is disabled in the demo.</li>
<li>Document management facilities are disabled in the demo.</li>
<li>Be aware other users will be able to see any information you put in we highly discourage using real names, email addresses, phone numbers.</li>
</ul>
<p>This is the B2B product so remember its tailored for businesses selling to other businesses if you target consumers this product isn&#8217;t for you but we will have our telesales/B2C product ready soon.</p>
<p>In all cases for the demo it is running the entry or base level package without any additional extras or fancy stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fcsoftware.co.uk/blog/?feed=rss2&amp;p=39</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Thoughts on official RIM Twitter client for Blackberries</title>
		<link>http://www.fcsoftware.co.uk/blog/?p=37</link>
		<comments>http://www.fcsoftware.co.uk/blog/?p=37#comments</comments>
		<pubDate>Wed, 24 Feb 2010 14:32:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[RIM]]></category>
		<category><![CDATA[RIM Twitter Client]]></category>

		<guid isPermaLink="false">http://www.fcsoftware.co.uk/blog/?p=37</guid>
		<description><![CDATA[First up considering its a beta damn its stable. I&#8217;ve not been able to find any problems with it yet even attempting to break it.  If it wasn&#8217;t for the invite only status I&#8217;d have thought this was a full blown 1.0 release. There are however a few short comings in the client little things [...]]]></description>
			<content:encoded><![CDATA[<p>First up considering its a beta damn its stable.</p>
<p>I&#8217;ve not been able to find any problems with it yet even attempting to break it.  If it wasn&#8217;t for the invite only status I&#8217;d have thought this was a full blown 1.0 release.</p>
<p>There are however a few short comings in the client little things that could be improved or features added that aren&#8217;t currently added.</p>
<p>Firstly the buttons along the top its navigation effectively is lovely IF you&#8217;re using a BB with some kind of scroll wheel on the storm/storm2 they&#8217;re horribly small and if &#8211; like me &#8211; you have large fingers almost impossible to press accurately.</p>
<p>My suggestion for fixing this is left right motion switching.  Just like in BBM running your finger left or right across the screen cycles through the various chats. Can we not have the same for the twitter client?</p>
<p>Last I heard twitter were adding in Location support for tweets and users (http://blog.twitter.com/2009/08/location-location-location.html).  Now I don&#8217;t know if this came to pass but if it did then its certainly not supported by the BB client.</p>
<p>I don&#8217;t really have a solution to this however Ubertwitter resolves it in an interesting way.  They update the Location field with coordinates and then if you want to look at all users within say a 5 mile radius of yourself then you can do.  Its an interesting feature I&#8217;d like to see implemented &#8211; especially amusing on drunken nights out to find others making a fool of themselves <img src='http://www.fcsoftware.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  &#8211; perhaps it could also be expanded to define some kind of BB user flag in there so you can perhaps say &#8220;show me all BB users within 5miles of me&#8221; leading perhaps to impromptu meets of fellow geeks/nerds and many gallons of ale&#8230;.. Just a thought.</p>
<p>Multiple acount support is none-existant.</p>
<p>I have 2 accounts one for work and one for personal usage I&#8217;d like to be able to update them both while I&#8217;m out and about without having to log out log in and resync to each account manually.  Perhaps register multiple accounts and have a simple overview screen showing account name, number of new tweets, date of last tweet, number of @&#8217;s or DM&#8217;s.</p>
<p>Then simply clicking on that accounts icon takes you into what is currently the main page of the app.</p>
<p>Aside from those few things though RIM have done a superb job of the client and I think once its in final release I&#8217;ll be switching to using it full time instead of UT.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fcsoftware.co.uk/blog/?feed=rss2&amp;p=37</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Small Basic Opensource Jobboard</title>
		<link>http://www.fcsoftware.co.uk/blog/?p=33</link>
		<comments>http://www.fcsoftware.co.uk/blog/?p=33#comments</comments>
		<pubDate>Wed, 03 Feb 2010 11:28:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Free Job Board]]></category>
		<category><![CDATA[Free php script]]></category>
		<category><![CDATA[Job Board]]></category>
		<category><![CDATA[PHP Job Board]]></category>

		<guid isPermaLink="false">http://www.fcsoftware.co.uk/blog/?p=33</guid>
		<description><![CDATA[A while ago a friend asked if I could knock together a very basic job board for him just to post 4-5 roles he was currently recruiting for. Being the good friend I am I agreed and 10 minutes later he had his job board. It recently came about that others may find such a [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago a friend asked if I could knock together a very basic job board for him just to post 4-5 roles he was currently recruiting for.</p>
<p>Being the good friend I am I agreed and 10 minutes later he had his job board.</p>
<p>It recently came about that others may find such a thing useful as well.  To this end I&#8217;m posting the Job Board zip file to this blog. Feel free to download it and use it if you want.  There is no license attached to this so do with it what you will.</p>
<p>Word of warning though to those of you that may be expecting an all singing and dancing system &#8211; this isn&#8217;t it! this is very basic and very simple and served its purpose.  There is no support with these files.</p>
<p><a href="http://www.fcsoftware.co.uk/blog/wp-content/uploads/2010/02/opensource-basic-jobboard.zip">opensource-basic-jobboard</a></p>
<p>Good Luck</p>
<p>Dave</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fcsoftware.co.uk/blog/?feed=rss2&amp;p=33</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Busy Busy</title>
		<link>http://www.fcsoftware.co.uk/blog/?p=31</link>
		<comments>http://www.fcsoftware.co.uk/blog/?p=31#comments</comments>
		<pubDate>Tue, 24 Nov 2009 12:21:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CRM]]></category>
		<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[ez-shop]]></category>

		<guid isPermaLink="false">http://www.fcsoftware.co.uk/blog/?p=31</guid>
		<description><![CDATA[Its been a hetic few months at FC Software. We&#8217;ve upgraded our Stockbroker B2C CRM platform to support trade tracking and commission based payroll for users.  Added more advanced reporting features and fixed a slew of bugs found in the system. We&#8217;ve updated the E-Commerce Package EZ-Shop to version 1.0.1 which fixes a few bugs [...]]]></description>
			<content:encoded><![CDATA[<p>Its been a hetic few months at FC Software.</p>
<p>We&#8217;ve upgraded our Stockbroker B2C CRM platform to support trade tracking and commission based payroll for users.  Added more advanced reporting features and fixed a slew of bugs found in the system.</p>
<p>We&#8217;ve updated the E-Commerce Package EZ-Shop to version 1.0.1 which fixes a few bugs found since it went open source.  You can download the latest installer pack from the open source section of our website.</p>
<p>We&#8217;ve implemented cashback features into the BlueLightCard website a service open for all Emergency Service workers in the UK.</p>
<p>We&#8217;ve also began planning and preparation to increase our hosted platform capacity and are currently looking at the feasability of blade&#8217;s instead of our current separate rack servers.</p>
<p>All in its been a bit mad around here recently.  We hope normal service will resume soon and are currently looking at other tools we&#8217;ve created that would be suitable for the open source world.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fcsoftware.co.uk/blog/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EZ-Shop approved on Hotscripts and Scripts dungeon</title>
		<link>http://www.fcsoftware.co.uk/blog/?p=30</link>
		<comments>http://www.fcsoftware.co.uk/blog/?p=30#comments</comments>
		<pubDate>Wed, 14 Oct 2009 09:25:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.fcsoftware.co.uk/blog/?p=30</guid>
		<description><![CDATA[Our EZ-Shop open source e-commerce platform has been approved on both the hot scripts website and the scripts dungeon website. http://www.HotScripts.com/?RID=N782379 http://www.scriptdungeon.com/freephpscript/freescripts9142 We think this is a great step in the right direction to help us make more people aware that there are full featured and free alternatives out there to the commercial offerings that [...]]]></description>
			<content:encoded><![CDATA[<p>Our EZ-Shop open source e-commerce platform has been approved on both the hot scripts website and the scripts dungeon website.</p>
<p>http://www.HotScripts.com/?RID=N782379</p>
<p>http://www.scriptdungeon.com/freephpscript/freescripts9142</p>
<p>We think this is a great step in the right direction to help us make more people aware that there are full featured and free alternatives out there to the commercial offerings that are so frequently missold to people.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fcsoftware.co.uk/blog/?feed=rss2&amp;p=30</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FC Software goes Opensource</title>
		<link>http://www.fcsoftware.co.uk/blog/?p=28</link>
		<comments>http://www.fcsoftware.co.uk/blog/?p=28#comments</comments>
		<pubDate>Fri, 18 Sep 2009 15:02:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[ez-shop]]></category>

		<guid isPermaLink="false">http://www.fcsoftware.co.uk/blog/?p=28</guid>
		<description><![CDATA[Well I&#8217;ve alway been a big fan of opensource products, at FC we use many on a daily basis.  Finally we are in a situation to give a little back I hope. Available immediately we have made our E-Commerce platform Opensource under the GPLv3 license. I was going to write an epic blog post about [...]]]></description>
			<content:encoded><![CDATA[<p>Well I&#8217;ve alway been a big fan of opensource products, at FC we use many on a daily basis.  Finally we are in a situation to give a little back I hope.</p>
<p>Available immediately we have made our E-Commerce platform Opensource under the GPLv3 license.</p>
<p>I was going to write an epic blog post about it and our reasonings etc but I don&#8217;t think thats really required.</p>
<p>Instead go look at our opensource page and see for yourself. <a href="http://im.ly/6d089/">http://im.ly/6d089/</a></p>
<p>Download it play about with it, improve it, fix it <img src='http://www.fcsoftware.co.uk/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  and get in touch we&#8217;d love to hear what your doing with the software.</p>
<p>Just remember if you decide to distribute it yourself to leave the link back to FC on the page&#8217;s!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fcsoftware.co.uk/blog/?feed=rss2&amp;p=28</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is your website working hard enough?</title>
		<link>http://www.fcsoftware.co.uk/blog/?p=27</link>
		<comments>http://www.fcsoftware.co.uk/blog/?p=27#comments</comments>
		<pubDate>Thu, 20 Aug 2009 10:39:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.fcsoftware.co.uk/blog/?p=27</guid>
		<description><![CDATA[Today&#8217;s websites have to work harder than ever to deliver opportunities to your desk. They can&#8217;t just be a billboard, they must gather information and present it efficiently to you for action. A new business lead should be dealt with instantly rather than within 24 hours! The more efficient you are getting in touch with [...]]]></description>
			<content:encoded><![CDATA[<p> Today&#8217;s websites have to work harder than ever to deliver opportunities to your desk. They can&#8217;t just be a billboard, they must gather information and present it efficiently to you for action.</p>
<p>A new business lead should be dealt with instantly rather than within 24 hours! The more efficient you are getting in touch with prospects and customers the more likely they will want to do business with you.</p>
<p>At First Contact Software we have over 20 years&#8217; experience of getting the best from companies&#8217; websites. We offer a free Audit of your Web Site and its content including any of these related business applications:</p>
<p>    * Lead Management<br />
    * CRM Solutions<br />
    * Document Management<br />
    * E-Commerce<br />
    * Email Marketing<br />
    * Asset Tracking<br />
    * Bespoke Solutions<br />
    * Business Analysis</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fcsoftware.co.uk/blog/?feed=rss2&amp;p=27</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Early Spec for our email marketing suite</title>
		<link>http://www.fcsoftware.co.uk/blog/?p=25</link>
		<comments>http://www.fcsoftware.co.uk/blog/?p=25#comments</comments>
		<pubDate>Wed, 22 Jul 2009 10:57:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[SMS Marketing]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[bulk emailing]]></category>
		<category><![CDATA[bulk text messaging]]></category>

		<guid isPermaLink="false">http://www.fcsoftware.co.uk/blog/?p=25</guid>
		<description><![CDATA[I thought I&#8217;d briefly list some of the features I&#8217;m planning for our email marketing suite this is by no means a definitive list however covers the major aspects of the system.  There&#8217;s no particular order to any of them its just as I initially wrote them down and thought of them. Bulk import of [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d briefly list some of the features I&#8217;m planning for our email marketing suite this is by no means a definitive list however covers the major aspects of the system.  There&#8217;s no particular order to any of them its just as I initially wrote them down and thought of them.</p>
<ul>
<li>Bulk import of contacts email address/firstname/surname</li>
<li>Single addition of contacts</li>
<li>Multiple campaign management each campaign handling its own set of leads from the central pool</li>
<li>Scheduled sending</li>
<li>Create store and edit email templates &amp; attachments to be used repeatedly within campaigns.</li>
<li>Email image storage and distribution for using images embedded within emails without users having to rely on having their own web server for image hosting.</li>
<li>Creation of tracking links for click through tracking etc.</li>
<li>Tracking and reporting on a per campaign basis on mails sent, mails bounced, mails delivered, mails opened and links clicked through.</li>
<li>Potential to tie into the FC CRM systems for both email lists and action tracking ie: receiver clicks a link goes to link website but is then  transparently also added to your companies FC CRM and assigned as a new lead with notes detailing what actions they took from email and which campaign they were a part of.</li>
<li>Timed resends ie: schedule a newsletter to go out once a month all you have to do is edit the newsletter content template each time.</li>
<li>Pre-send spam checking and weighting &#8211; before you waste your send have your email content checked for likely hood of being caught by spam filters.</li>
<li>Pay as you go system. You have your system and contacts for life and you only pay when you actually send an email.</li>
</ul>
<p>Now there&#8217;s a few other smaller things that go with the above but there&#8217;s also a few potential other features I&#8217;m thinking about putting into this outside of the initial remit of &#8220;email marketing&#8221;.</p>
<p>SMS Marketing &#8211; Ability to schedule and send bulk SMS&#8217;s just as you do with the emails above but instead with text messages.</p>
<p>Twitter Marketing &#8211; I&#8217;ve been playing with the twitter API and as part of this suite I&#8217;ve also considered building in a twitter manager. Handles multiple accounts, schedule timed broadcasts to accounts, pre-set templates the whole lot.  I&#8217;m thinking this is perhaps a phase 3 system but its something that I&#8217;m keeping in the back of my mind as a value added service if you like.</p>
<p>Think thats about it I&#8217;m sure more idea&#8217;s will come to me over time or if you have any suggestions all are welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fcsoftware.co.uk/blog/?feed=rss2&amp;p=25</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Related to the previous post</title>
		<link>http://www.fcsoftware.co.uk/blog/?p=23</link>
		<comments>http://www.fcsoftware.co.uk/blog/?p=23#comments</comments>
		<pubDate>Tue, 30 Jun 2009 12:32:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[SocialCRm]]></category>

		<guid isPermaLink="false">http://www.fcsoftware.co.uk/blog/?p=23</guid>
		<description><![CDATA[It seems I&#8217;m not alone in finding little point to using Social Media for B2B sales. http://www.destinationcrm.com/Articles/CRM-News/Daily-News/New-Social-Media-Not-Helping-Sales-53368.aspx Again this seems to negate the amount of benefit gained from a &#8220;SocialCRM&#8221;]]></description>
			<content:encoded><![CDATA[<p>It seems I&#8217;m not alone in finding little point to using Social Media for B2B sales.</p>
<p>http://www.destinationcrm.com/Articles/CRM-News/Daily-News/New-Social-Media-Not-Helping-Sales-53368.aspx</p>
<p>Again this seems to negate the amount of benefit gained from a &#8220;SocialCRM&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fcsoftware.co.uk/blog/?feed=rss2&amp;p=23</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
