<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: How to display on/off status on a website?</title>
	<link>http://ask.metafilter.com/35470/How-to-display-onoff-status-on-a-website/</link>
	<description>Comments on Ask MetaFilter post How to display on/off status on a website?</description>
	<pubDate>Fri, 31 Mar 2006 12:45:55 -0800</pubDate>
	<lastBuildDate>Fri, 31 Mar 2006 12:45:55 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: How to display on/off status on a website?</title>
		<link>http://ask.metafilter.com/35470/How-to-display-onoff-status-on-a-website</link>	
		<description>How can I set up a simple system that allows a non-html knowing website owner to change easily change the displayed status of team members on the site? &lt;br /&gt;&lt;br /&gt; The business has 17 team members, each one with their own page on the website. The business owner needs to easily change each member&apos;s status from &quot;Available&quot; to &quot;Unavailable&quot; using text or an graphic icon. I tried to make this work with multiple ICQ accounts and a couple different programs that allow simultaneous access but it was far from flawless. &lt;br&gt;
&lt;br&gt;
Could this work with submitted form? I don&apos;t want to install a bulky content management system just for this small function.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2006:site.35470</guid>
		<pubDate>Fri, 31 Mar 2006 12:18:58 -0800</pubDate>
		<dc:creator>davebush</dc:creator>
		
			<category>web</category>
		
			<category>programming</category>
		
	</item> <item>
		<title>By: twiggy</title>
		<link>http://ask.metafilter.com/35470/How-to-display-onoff-status-on-a-website#552173</link>	
		<description>You could write this pretty easily in PHP or some such language.  It sounds like a rather customized need, so I&apos;m not so sure you&apos;re going to be able to find a canned script to do this.  It wouldn&apos;t be too hard with a scripting language, though.  Do you do any programming?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.35470-552173</guid>
		<pubDate>Fri, 31 Mar 2006 12:45:55 -0800</pubDate>
		<dc:creator>twiggy</dc:creator>
	</item><item>
		<title>By: m@</title>
		<link>http://ask.metafilter.com/35470/How-to-display-onoff-status-on-a-website#552190</link>	
		<description>I second twiggy&apos;s comments.  &lt;br&gt;
&lt;br&gt;
Very simple to do in a scripting language (even javascript if no backend pre-processor is available on the host and javascript is not an issue) but I can&apos;t think of a single way to change state on a web page without some interaction (pre-processor or ftp/telnet access).  The ICQ idea is clever but invevitably unworkable and too dependent on outside variables.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.35470-552190</guid>
		<pubDate>Fri, 31 Mar 2006 13:07:49 -0800</pubDate>
		<dc:creator>m@</dc:creator>
	</item><item>
		<title>By: cillit bang</title>
		<link>http://ask.metafilter.com/35470/How-to-display-onoff-status-on-a-website#552210</link>	
		<description>Yeah, a PHP script plus a single table MySQL database would do this. If you have any programming experience you should be able to knock this together in a couple of days, with a basic cookie to authenticate the boss.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.35470-552210</guid>
		<pubDate>Fri, 31 Mar 2006 13:26:09 -0800</pubDate>
		<dc:creator>cillit bang</dc:creator>
	</item><item>
		<title>By: Grangousier</title>
		<link>http://ask.metafilter.com/35470/How-to-display-onoff-status-on-a-website#552239</link>	
		<description>You could even do it with PHP (or similar) writing to a flat file (list of team members followed by a 1 or 0 to signify available or unavailable) and then you wouldn&apos;t need the MySQL. You could have a separate file-management page that opened the file into a form and then rewrote the file from the form when you clicked submit. &lt;br&gt;
&lt;br&gt;
Do you know any geeks who owe you favours?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.35470-552239</guid>
		<pubDate>Fri, 31 Mar 2006 14:02:33 -0800</pubDate>
		<dc:creator>Grangousier</dc:creator>
	</item><item>
		<title>By: rafter</title>
		<link>http://ask.metafilter.com/35470/How-to-display-onoff-status-on-a-website#552276</link>	
		<description>&lt;a href=&quot;http://donald.tetto.org/ask/&quot;&gt;Here&apos;s a simple PPHP script that will do it&lt;/a&gt;. Might not be the most efficient code, but I threw it together without much thought. The source is &lt;a href=&quot;http://donald.tetto.org/ask/source/&quot;&gt;here&lt;/a&gt;.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.35470-552276</guid>
		<pubDate>Fri, 31 Mar 2006 14:55:31 -0800</pubDate>
		<dc:creator>rafter</dc:creator>
	</item><item>
		<title>By: AmbroseChapel</title>
		<link>http://ask.metafilter.com/35470/How-to-display-onoff-status-on-a-website#552281</link>	
		<description>This sounds like the world&apos;s simplest content-management system.&lt;br&gt;
&lt;br&gt;
I&apos;d write a page with a form, and a radio button next to each player&apos;s name. Saving the form would change the pages. And I&apos;d go for the &quot;security through obscurity&quot; authentication model, i.e. none.&lt;br&gt;
&lt;br&gt;
On preview ... which is exactly what &lt;strong&gt;rafter&lt;/strong&gt; has done. Only I would have done it in Perl. Just because.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.35470-552281</guid>
		<pubDate>Fri, 31 Mar 2006 15:02:44 -0800</pubDate>
		<dc:creator>AmbroseChapel</dc:creator>
	</item><item>
		<title>By: davebush</title>
		<link>http://ask.metafilter.com/35470/How-to-display-onoff-status-on-a-website#552462</link>	
		<description>rafter - That&apos;s pretty damn sweet. Thanks tons.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.35470-552462</guid>
		<pubDate>Fri, 31 Mar 2006 21:23:40 -0800</pubDate>
		<dc:creator>davebush</dc:creator>
	</item>
	</channel>
</rss>
