<?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>ChurchIT - Supporting ministry with IT &#187; Web</title>
	<atom:link href="http://www.churchit.co.uk/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.churchit.co.uk</link>
	<description>Supporting ministry with IT</description>
	<lastBuildDate>Wed, 28 Sep 2011 20:21:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>A simple PHP widget for WordPress</title>
		<link>http://www.churchit.co.uk/2011/08/a-simple-php-widget-for-wordpress/</link>
		<comments>http://www.churchit.co.uk/2011/08/a-simple-php-widget-for-wordpress/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 22:07:21 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=341</guid>
		<description><![CDATA[So my job this evening was to recreate a little PHP script I wrote a little while ago that would automatically display the streets that a church is praying for in any given month. It&#8217;s actually very simple to do, though you will need to install a plugin in WordPress as the standard Text widget [...]]]></description>
			<content:encoded><![CDATA[<p>So my job this evening was to recreate a little PHP script I wrote a little while ago that would automatically display the streets that a church is praying for in any given month. It&#8217;s actually very simple to do, though you will need to install a plugin in WordPress as the standard Text widget doesn&#8217;t work with PHP.</p>
<h1><span id="more-341"></span><span>Installing the widget</span></h1>
<p><span>Click on Plugins and then Add new. Search for Executable PHP widget by Otto. Once installed go to the Widgets page. Drag and drop PHP code to the desired sidebar. Enter a title.</span></p>
<h1>The Code</h1>
<p><code>&lt;p&gt;This month we are praying for:&lt;br/&gt;<br />
&lt;?php<br />
$prayermonth = date("m");</code></p>
<p><code>switch ($prayermonth)<br />
{<br />
case 1:<br />
echo "January Streets";<br />
break;<br />
case 2:<br />
echo "February Streets";<br />
break;<br />
default:<br />
echo "everywhere";<br />
}<br />
?&gt;<br />
&lt;/p&gt;</code></p>
<p>You don&#8217;t really need to see all the months to get the idea of what&#8217;s going on.</p>
<h1>Editing month data</h1>
<p>Look for the numbers that correspond with the month number and edit the text within the speech marks. Don’t delete the speech marks or the widget will display an error message. In fact it is a good idea to copy all the text in this box to a separate text editor (<a title="My review of Notepad++ on Computeractive.co.uk" href="http://www.computeractive.co.uk/ca/download-review/1909010/notepad-583" target="_blank">with my standard plug for Notepad++</a>) and leave it there until you are sure everything is working.</p>
<p>When you have finished editing the streets, click on the Save button at the bottom of the widget. A small circle will appear while it is saving. This is the only sign that anything is happening. Before doing anything else, open another tab in your browser and check that it is working. If it is you can move on to something else. Otherwise copy and paste the text from the text editor back into widget box and start again (You did make that backup step didn’t you?)</p>
<h1>How it works</h1>
<p>This is about as simple as it gets with PHP and it’s a good example of how PHP and HTML work together. Remember that PHP is executed by the web server not the browser (in contrast to Javascript), so you won’t see any of the PHP code if you look at the source code of the home page. Here goes&#8230;</p>
<p><strong>&lt;p&gt;This month we are praying for:&lt;br/&gt;<br />
</strong>Well this is pretty straightforward. We start the paragraph, insert the text that never changes ending with a line break</p>
<p><strong>&lt;?php<br />
</strong>This tells WordPress (and the web server) that some PHP is coming up</p>
<p><strong>$prayermonth = date(&#8220;m&#8221;);<br />
</strong>The creates a variable called prayermonth. The $ symbol marks this as a variable. Rather than give it a single value, we use the date function to give the current month number with “m”. Note the ; at the end of the line. As an aside, I’m assuming that month is a reserved word as that didn’t work.</p>
<p><strong>switch ($prayermonth)<br />
{<br />
</strong>This is the clever bit. A switch statement is like an If &#8230; ElseIf&#8230; statement but a lot easier to work with when there are lots of variables; twelve in this case. It looks at $prayermonth and then does different things depending on what the variable contains. For example&#8230;.</p>
<p><strong>case 1:<br />
echo &#8220;January Streets&#8221;;<br />
break;<br />
</strong>This is what happens if prayermonth contains 1. It prints January Streets into the widget. That’s what you’ll see in the web browser.The break command tells the server to skip to the end of the switch statement</p>
<p><strong>default:<br />
echo &#8220;All of Copthorne&#8221;;<br />
</strong>A good idea to include, the default case is what is displayed if there is no matching case. That’s unlikely with this script but that’s no reason not to foster good habits.</p>
<p><strong>}<br />
?&gt;<br />
&lt;/p&gt;<br />
</strong>The { finishes the Switch statement. The ?&gt; ends the PHP code and the &lt;/p&gt; closes the paragraph</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2011/08/a-simple-php-widget-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy database administration</title>
		<link>http://www.churchit.co.uk/2010/10/easy-database-administration/</link>
		<comments>http://www.churchit.co.uk/2010/10/easy-database-administration/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 21:33:59 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=308</guid>
		<description><![CDATA[This was a quite exciting find. It&#8217;s a plugin for OpenOffice that gives it the ability to access MySQL databases online. Databases for websites such as this one are something I regard as a means to an end rather than something I&#8217;m an expert in. The usual tool, phpMyadmin, is very powerful but not always [...]]]></description>
			<content:encoded><![CDATA[<p>This was a quite exciting find. It&#8217;s a plugin for OpenOffice that gives it the ability to access MySQL databases online.</p>
<p>Databases for websites such as this one are something I regard as a means to an end rather than something I&#8217;m an expert in. The usual tool, <a href="http://www.phpmyadmin.net/home_page/index.php">phpMyadmin</a>, is very powerful but not always the  most friendly to the newcomer. An alternative that works with a familiar program got me quite excited.</p>
<p>Installation is as simple as installing any other OpenOffice extension although you will need to do this from a different program in OpenOffice than Base, unless you are willing to create a database first.</p>
<p>After that, there&#8217;s an option for MySQL in the &#8216;Connect to an existing database&#8217; menu. You can test the connection before finishing the wizard. A useful touch I&#8217;m always pleased to see as it avoids significant frustration in the event of typos.</p>
<p>You can find my day job review and the download link <a title="Computeractive download review of MySQL connector" href="http://www.computeractive.co.uk/computeractive/downloads/2268864/mysql-connector-openoffice-org" target="_self">here</a>.</p>
<p>OK, I probably shouldn&#8217;t get excited about such things, I&#8217;m only human.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2010/10/easy-database-administration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web roundup</title>
		<link>http://www.churchit.co.uk/2010/09/web-roundup/</link>
		<comments>http://www.churchit.co.uk/2010/09/web-roundup/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 21:54:37 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[sheepdip]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=289</guid>
		<description><![CDATA[Stuff Christians Like Stuff Christians like is what blogging is meant to be. Some of the posts are laugh out loud funny (a good way to start conversations in the office I suppose) but others are more challenging. A common post is a questionnaire with points to score, such as you might find in a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://stuffchristianslike.net/">Stuff Christians Like<br />
</a>Stuff Christians like is what blogging is meant to be. Some of the posts are laugh out loud funny (a good way to start conversations in the office I suppose) but others are more challenging. A common post is a questionnaire with points to score, such as you might find in a magazine.</p>
<p>For example, one attempts to solve the problem of two apparently contradictory statements in the Bible. Passages from the Old Testament score 1 point, New Testament 2 points, something Jesus actually said 3 points. Another offers advice on what people think about your prayers (5. Your wife or husband give you the &#8220;wrap it up&#8221; tap during your prayer = minus 2 points).</p>
<p><a href="http://www.collidemagazine.com">Collide Magazine</a><br />
Collide is a good place to look if you are interested in using computers and technology in or around church. Sadly there is no print magazine in the UK but you can subscribe to the blog that includes regular round ups of internet news and videos.</p>
<p><a href="http://www.lifehacker.com">LifeHacker</a><br />
This isn&#8217;t a Christian website, but is still worth a mention. Lifehacker is a blog with advice on getting the most from your computer and the internet. The tips cover everything from new ways to use software such as Office, free stuff on line and new software that you might not have heard of before.</p>
<p><a href="http://www.magnatune.com">Magnatune</a><br />
Magnatune.com is an online music shop that proudly announces “We are not evil”. They certainly don’t look that way from the customer’s point of view. You can listen to the music on the site and then choose exactly how much to spend on albums from £3 to £10. Delivery is by download only but CD quality versions are available at no extra cost. The range is somewhat eclectic but is worth the search as there are some real gems. I can strongly recommend the American Bach Soloists, or Drop Trio, if your tastes include jazz.</p>
<p><a href="http://www.internetevangelismday.com">Internet Evangelism Day</a><br />
Held on the 26 April every year, this day aims to get us talking about our faith online, be it on social networking sites like Facebook, or by giving local websites a brush up. There is a monthly newsletter that is full of interesting links and stories, some spiritual and others of a more technical bias. If you are thinking about reviewing your church website, there is a very useful <a href="http://www.internetevangelismday.com/church-site-design.php">questionaire and checklist</a>.</p>
<p>First published on <a title="The Sheepdip" href="http://www.thesheepdip.co.uk/" target="_blank">The Sheep Dip</a>,  a Christian-run website offering quality material for church newsletter and magazine editors to use for a small fee.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2010/09/web-roundup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scripture Union WordLive</title>
		<link>http://www.churchit.co.uk/2010/09/scripture-union-wordlive/</link>
		<comments>http://www.churchit.co.uk/2010/09/scripture-union-wordlive/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 21:48:41 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[sheepdip]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=286</guid>
		<description><![CDATA[As many of us seem to get ever busier and mobile, it can be hard to take Bible notes along too. There&#8217;s only so much I can carry in my laptop bag and that&#8217;s if I remember to transfer everything across. Wordlive is a new service from Scripture Union that offers a daily reading via [...]]]></description>
			<content:encoded><![CDATA[<p>As many of us seem to get ever busier and mobile, it can be hard to take Bible notes along too. There&#8217;s only so much I can carry in my laptop bag and that&#8217;s if I remember to transfer everything across. <a href="http://www.scriptureunion.org.uk/WordLive">Wordlive</a> is a new service from Scripture Union that offers a daily reading via email, RSS news feed, podcast or a web browser, either on a computer or mobile phone at no cost.</p>
<p>The rationale behind the email version makes a lot of sense. Those of use who rely on email check it regulary so it will always get through. It makes a lot of sense with the idea I picked up at Spring Harvest about the 3 minute quiet time. Even at my busiest I should be able to take the time to read through a quick Bible study.</p>
<p>The mobile phone version is a good idea for taking advantage of quiet moments in the day when a computer may not be to hand. It is well thought out and split into sections to help keep data costs down. If you plan on using the service a lot with a mobile it would be wise to check how much your mobile phone company charges.</p>
<p>A cheaper (and faster) way to listen to the bible notes is to sign up to the Podcast via iTunes. Don&#8217;t worry if you don&#8217;t have an iPod (I don&#8217;t either) as you can find the downloaded podcasts in the folder iTunes creates in your My Music or Music folder for Windows XP and Vista respectively.</p>
<p>WordLive is an excellent alternative to traditional Bible note books. It won&#8217;t suit everyone but should certainly be given a try if you are looking for a new start in personal devotional times.</p>
<p>If you do use WordLive and find it helpful, it might be a good thing to help support Scripture Union with the costs of producing this material. I discovered the service via an appeal leaflet so it only seems fair to mention this. You can donate online or by filling out a form to post.</p>
<p>First published on <a title="The Sheepdip" href="http://www.thesheepdip.co.uk/" target="_blank">The Sheep Dip</a>,  a Christian-run website offering quality material for church newsletter and magazine editors to use for a small fee.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2010/09/scripture-union-wordlive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ReelWorship &#8211; free worship resources</title>
		<link>http://www.churchit.co.uk/2010/09/reelworship-free-worship-resources/</link>
		<comments>http://www.churchit.co.uk/2010/09/reelworship-free-worship-resources/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 21:17:54 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[sheepdip]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=272</guid>
		<description><![CDATA[Now that projectors have given churches the freedom to show words and scripture with a little more panache than the humble overhead projector, the next challenge is to find a good background. This can be harder than you might think as I found when preparing slides for my church&#8217;s Carol Service. Reelworship.com is a good [...]]]></description>
			<content:encoded><![CDATA[<p>Now that projectors have given churches the freedom to show words and scripture with a little more panache than the humble overhead projector, the next challenge is to find a good background. This can be harder than you might think as I found when preparing slides for my church&#8217;s Carol Service. Reelworship.com is a good place to look for images as they have been specifically chosen for this purpose.</p>
<p>It is possible to find photos on the internet, but it no easy task, even with photo sharing websites like Flickr. The reason for this is that a composition that looks good in the photo album does not necessarily make a good background image as they need to be relatively unobtrusive.</p>
<p>ReelWorship has a large collection of over 800 images that can be downloaded and used at no cost. This is an impressive number, given that there are many sites that want payment for fewer images.<span id="more-272"></span></p>
<p><strong>Getting Started</strong></p>
<p>Reelworship is more than a simple photo sharing website having been created with the Ning Social Networking software. Any registered user can add photos to the site as well as create their own page that can be used as a blog or place to chat. At the time of writing there were 1580 members. More public discussions are possible on the site forum including advice on several different worship programs.</p>
<p><strong>Choosing pictures</strong></p>
<p>You can pick pictures from the various albums that the different contributors have submitted either using tags or view them in albums. These abulms include the main seasons of the church, essential given teh number of images on the site.</p>
<p>One benefits of the free registration is the ability to download collections of images. This is a good way to start working out which images will work best in different situations. There is a good mix of images suitable for general use as well as specific seasons.</p>
<p><strong>Beyond pictures</strong></p>
<p>It’s not just pictures that can be used in church services; some of the presentation software can use videos as well. If anything suitable videos are even harder to find so this collection of over seventy videos is very useful.</p>
<p><strong>Conclusion</strong></p>
<p>Given the difficulty of finding food images using Google or Flickr, ReelWorship is worth registration for the zip collections alone. Frankly I wish I had known about this website before Christmas as the images would have been ideal. As it is, the non seasonal images are likely to become a regular fixture behind song words.</p>
<p>First published on <a title="The Sheepdip" href="http://www.thesheepdip.co.uk/" target="_blank">The Sheep Dip</a>,  a Christian-run website offering quality material for church newsletter and magazine editors to use for a small fee.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2010/09/reelworship-free-worship-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreamweaver first, and only, impressions</title>
		<link>http://www.churchit.co.uk/2010/03/dreamweaver-first-and-only-impressions/</link>
		<comments>http://www.churchit.co.uk/2010/03/dreamweaver-first-and-only-impressions/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 20:56:43 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=228</guid>
		<description><![CDATA[Why was I throwing myself at the mercy of Adobe&#8217;s automated &#8216;help&#8217; last week? Well I&#8217;ve been helping out moving the church website I used to administer over to a new design and platform. Joomla was just too capable for the parish and was putting people off. Myself included, trying to sort out both sections [...]]]></description>
			<content:encoded><![CDATA[<p>Why was I throwing myself at the mercy of <a href="http://www.adobe.com/uk/">Adobe&#8217;s</a> automated &#8216;help&#8217; last week?</p>
<p>Well I&#8217;ve been helping out moving the church website I used to administer over to a new design and platform. <a href="http://www.joomla.org/">Joomla</a> was just too capable for the parish and was putting people off. Myself included, trying to sort out both sections and categories for a relatively simple site became quite a headache.</p>
<p>Anyway, given the current situation a static website seemed the best plan with Dreamweaver the editor in use. I use <a href="http://www.microsoft.com/expression/products/Web_Overview.aspx">Microsoft Expression Web</a> myself so I sorted out the template first and then had a go at transferring it over.</p>
<p>To my delight it worked very well. The template file, .dwt, was opened without any comment and we got started creating pages very quickly.</p>
<p>Dreamweaver was pretty impressive just in some basic editing over a couple of hours, hence I considered the change. It&#8217;s a shame there&#8217;s no crossgrade path from Expression Web, £400 is just too much to make it a possible buy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2010/03/dreamweaver-first-and-only-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Live Chat automated? I think probably so</title>
		<link>http://www.churchit.co.uk/2010/03/230/</link>
		<comments>http://www.churchit.co.uk/2010/03/230/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 11:06:49 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=230</guid>
		<description><![CDATA[I can&#8217;t be sure, but I think Adobe&#8217;s Live Chat is automated. What follows should have been a simple request. Or so I thought&#8230;. Welcome to Adobe! You are now chatting with &#8216;Perkins&#8217; Perkins: Hello, how can I help you? you: hi, are there upgrades for dreamweaver from competiting products? specifically ms expression web? Perkins: [...]]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t be sure, but I think Adobe&#8217;s Live Chat is automated. What follows should have been a simple request. Or so I thought&#8230;.</p>
<ul>
<li>Welcome to Adobe! You are now chatting with &#8216;Perkins&#8217;</li>
<li>Perkins: Hello, how can I help you?</li>
<li>you: hi, are there upgrades for dreamweaver from competiting products?<br />
specifically ms expression web?</li>
<li>Perkins: I&#8217;d be glad to help you with that information.</li>
<li>Perkins: Do you have any previous version of Dreamweaver?</li>
<li>you: no</li>
<li>you: I&#8217;m using ms expression web and would like to move to dreamweaver</li>
<li>Perkins: Are you there with me in chatting?</li>
<li>Perkins: As we are from Adobe Retail Sales Chat, I recommend you to<br />
buy Adobe Dreamweaver, which is a good competitor for all other Web<br />
Design products.</li>
<li>Perkins: Adobe Dreamweaver CS4 is a web development tool that lets<br />
users design, develop, and maintain websites using visual editor or by<br />
coding directly.</li>
<li>Perkins: You can create and maintain basic websites to dynamic,<br />
advanced applications that support best practices and the latest web<br />
standards and technologies.</li>
<li>Perkins: We recommend the purchase of Adobe software on our web site.</li>
<li>Perkins: Because, there are many advantages of buying the software on Adobe.com</li>
<li>Perkins: Most importantly, you can be sure that you&#8217;re getting<br />
authorized software from us.</li>
<li>you: yes, but is ms expression web a qualifying upgrade / crossgrade product?</li>
<li>Perkins: No, from MS Expression Web there is not upgrade path.</li>
<li>Perkins: What kinds of tasks would you like the software to help you<br />
accomplish?</li>
</ul>
<p>I can&#8217;t say that this makes the thought of parting with over £400 any more attractive, even after my good experiences with Dreamweaver last night.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2010/03/230/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Knowing your audience</title>
		<link>http://www.churchit.co.uk/2008/08/knowing-your-audience/</link>
		<comments>http://www.churchit.co.uk/2008/08/knowing-your-audience/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 22:13:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/2008/08/knowing-your-audience/</guid>
		<description><![CDATA[I&#8217;m in the process of redesigning our church&#8217;s web site. Having realised that spending £10 for a proper template (thanks to JoomlaShack and their online template builder) rather than trying to do it myself and wasting a lot of time, the main work has been deciding how to organise the articles and what should be [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in the process of redesigning our church&#8217;s web site. Having realised that spending £10 for a proper template (thanks to <a href="http://www.joomlashack.com/">JoomlaShack</a> and their <a href="http://www.joomlatemplatebuilder.com/">online template builder</a>) rather than trying to do it myself and wasting a lot of time, the main work has been deciding how to organise the articles and what should be on the front page. </p>
<p><a href="http://churchrelevance.com/">Church Relevance</a> has a <a href="http://churchrelevance.com/top-90-church-websites/">regular chart</a> of well designed church web sites and this provides a useful counter balance to my desire to get as much content on the front page, often at the expense of visual eye candy. Hopefully the new homepage will do this much better than the current one.</p>
<p>Even so it&#8217;s hard to know what sort of information should take pride of place on the web site and this goes to the root of what the web site is for. It is an advertisement for the church to the world, but it can also provide huge benefits for existing members. </p>
<p>I read a great article tonight on the subject at digital.leadnet.org, &#8216;<a href="http://digital.leadnet.org/2008/08/does-your-churc.html">Does your church website serve two masters?</a>&#8216;. For a long time the majority of our traffic has been from new visitors. Some new traffic is good but this suggests that it&#8217;s not really a community site. I&#8217;d also love to see the site used by more people but that doesn&#8217;t seem to happen. But that&#8217;s a good reminder for me that many people do not use the web and computers like I do. So I think for the moment we should concentrate on bringing people in on the main website, and maybe set up a subdomain for all the internal stuff.&nbsp; </p>
<p>I <strike>think I shall add</strike> have added the author&#8217;s blog, healyourchurchwebsite.com to my blogroll.</p>
<p>Now I need is approval and sign off&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2008/08/knowing-your-audience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing good lyrics</title>
		<link>http://www.churchit.co.uk/2008/08/writing-good-lyrics/</link>
		<comments>http://www.churchit.co.uk/2008/08/writing-good-lyrics/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 20:48:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Worship]]></category>
		<category><![CDATA[lists]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=45</guid>
		<description><![CDATA[I got a comment the other day recommending the website Audiotuts. I&#8217;ve kept an eye on it over the last few weeks and it does seem rather good. The latest post has caught my eye especially, 50 Great Lyric Writing Resources. I have to say I have a soft spot for web link lists and [...]]]></description>
			<content:encoded><![CDATA[<p>I got a comment the other day recommending the website Audiotuts. I&#8217;ve kept an eye on it over the last few weeks and it does seem rather good. The latest post has caught my eye especially, <a title="50 Great Lyric writing resources on Audiotuts.com" href="http://audiotuts.com/resources/50-great-lyric-writing-resources/" target="_self">50 Great Lyric Writing Resources</a>. I have to say I have a soft spot for web link lists and I&#8217;ve just finished reading <a title="God songs at Wesley Owen" href="http://www.wesleyowen.com/WesleyOwenSite/product/9781933150031.htm" target="_blank">God Songs by Paul Baloche</a> that has a lot about writing songs.</p>
<p>Composition was never my strong point at school when I did music, so I&#8217;ve been trying to brush up on these skills. There&#8217;s plenty of stuff to keep me occupied for a while.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2008/08/writing-good-lyrics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which Bible version suits you best?</title>
		<link>http://www.churchit.co.uk/2008/05/which-bible-version-suits-you-best/</link>
		<comments>http://www.churchit.co.uk/2008/05/which-bible-version-suits-you-best/#comments</comments>
		<pubDate>Mon, 19 May 2008 22:07:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[bible]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=36</guid>
		<description><![CDATA[If you&#8217;re anything like me, you&#8217;ll have probably stuck with the same Bible translation for years. In my case, my church&#8217;s choice has a lot to do with it. That and the fact that the pictures in the Good News are an excellent way of finding passages! Those wanting some suggestions will find the Bible [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re anything like me, you&#8217;ll have probably stuck with the same Bible translation for years. In my case, my church&#8217;s choice has a lot to do with it. That and the fact that the pictures in the Good News are an excellent way of finding passages!</p>
<p>Those wanting some suggestions will find the <a href="http://www.mybibleversion.com/index.php" target="_blank">Bible Version Selection Tool</a> most helpful. The basic version offers serveral different aims from private study to public reading. The detailed options offer a lot more control, such as whether cultural references are translated.</p>
<p>You can view the records for each Bible too, which is a useful way of getting some background on unfamiliar translations, as I was with the Message.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2008/05/which-bible-version-suits-you-best/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

