<?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>Custom Software and Web Application Development Blog&#187; Web Application Development</title>
	<atom:link href="http://mfsotx.org/category/web-application-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://mfsotx.org</link>
	<description>Useful Information Source of Events in IT Sphere</description>
	<lastBuildDate>Thu, 26 Aug 2010 15:29:34 +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>How to layout 6 images in two rows if you want to use XHTML and CSS?</title>
		<link>http://mfsotx.org/how-to-layout-6-images-in-two-rows-if-you-want-to-use-xhtml-and-css/</link>
		<comments>http://mfsotx.org/how-to-layout-6-images-in-two-rows-if-you-want-to-use-xhtml-and-css/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 13:00:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Application Development]]></category>

		<guid isPermaLink="false">http://mfsotx.org/how-to-layout-6-images-in-two-rows-if-you-want-to-use-xhtml-and-css/</guid>
		<description><![CDATA[I am a bit of a self taught newbie. I have a website that layouts out some images with a brief description under them as in a product catalogue. I would like to have six images 3 on each of two rows. I have done it with a table in HTML. But I would like [...]]]></description>
			<content:encoded><![CDATA[<p>I am a bit of a self taught newbie. I have a website that layouts out some images with a brief description under them as in a product catalogue. I would like to have six images 3 on each of two rows. I have done it with a table in HTML. But I would like to redo the page in strict XHTML and CSS.</p>
<p>Can anyone give me a quick guide as to how to do this or point me to a good tutorial on this (I have not been able to find one)? Im planning to sort it out something like that:</p>
<p>div.clearer {<br />
clear: both;<br />
height: 0px;<br />
}</p>
<p>Ok, I&#8217;m not completely disputing the table idea but&#8230; this looks more like a list to me. A list of images (and descriptions), a list of products&#8230; a sequential list of items one after the other. Why is this tabular data? What is the relationship between rows and columns?<br />
A list can be styled to have 3 columns and 2 (or however many) rows in a similar way to koan&#8217;s method&#8230; floating the LI&#8217;s and setting width:33%. Or you could fix the width of your LI&#8217;s (presumably your images are fixed width) and allow the list to flow &#8211; showing 3 columns at your optimum resolution/viewport size but perhaps more or less depending on the size of the users viewing device &#8211; depending how flexible your layout is. You can&#8217;t do this with a table. A list is also easier to markup and output dynamically from a serverside script.</p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/how-to-layout-6-images-in-two-rows-if-you-want-to-use-xhtml-and-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash game works locally, not from server!</title>
		<link>http://mfsotx.org/flash-game-works-locally-not-from-server/</link>
		<comments>http://mfsotx.org/flash-game-works-locally-not-from-server/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 17:49:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Application Development]]></category>

		<guid isPermaLink="false">http://mfsotx.org/flash-game-works-locally-not-from-server/</guid>
		<description><![CDATA[Hi guys, I&#8217;m pretty good with HTML and CSS. My company paid a developer to make us a flash game. If i open his directory and run the html file locally from my computer, the game runs fine. However, Once I upload them to the server, the loader counts to 100% and then nothing on [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: verdana; color: #000000; font-size: x-small;">Hi guys, </span><span style="font-family: verdana; color: #000000; font-size: x-small;">I&#8217;m pretty good with HTML and CSS. My company paid a developer to make us a flash game. If i open his directory and run the html file locally from my computer, the game runs fine. However, Once I upload them to the server, the loader counts to 100% and then nothing on the screen. </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">I&#8217;ve tried from Dreamweaver, FTP Voyager and Ipswitch. I tried both Binary and ASCII. I tried switching some links in the html file. Nothing has worked.</span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">It&#8217;s entirely possible the linking is incorrect, or that the Flash uses class files that aren&#8217;t properly linking? Some Flash requires class files, which is a bit burgeonsome but is a trait of ActionScript 2/3.0. </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">Look through your code, both HTML and ActionScript, for any of this: </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">file:\\C:\my documents\flash\somefile.swf </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">Use absolute relative linking, in both the Flash and your files, </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">/flash/somefile.swf </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">Not with the CWD syntax: </span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">../flash/somefile.swf</span></p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;">Should work!</span><span id="more-23"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/flash-game-works-locally-not-from-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to capture HTTP Response headers of the same page using PHP</title>
		<link>http://mfsotx.org/how-to-capture-http-response-headers-of-the-same-page-using-php/</link>
		<comments>http://mfsotx.org/how-to-capture-http-response-headers-of-the-same-page-using-php/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 10:59:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Application Development]]></category>

		<guid isPermaLink="false">http://mfsotx.org/how-to-capture-http-response-headers-of-the-same-page-using-php/</guid>
		<description><![CDATA[Hi All, I have a requirement of displaying HTTP Response headers in the same page being redered using PHP. This is to track various responses sent by the Apache Server for same page on different scenarios (like 200, 304, 503) I have a single php file as follows: &#8212;&#8212;-index.php&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#60;?php header(&#8216;Cache-Control: no-cache&#8217;); print(&#8216;&#60;?xml version=&#8221;1.0&#8243; encoding=&#8221;ISO-8859-1&#8243;?&#62;&#8217;.&#8221;\n&#8221;); [...]]]></description>
			<content:encoded><![CDATA[<p><font color="#000000" face="verdana" size="2">Hi All, </font><font color="#000000" face="verdana" size="2">I have a requirement of displaying HTTP Response headers in the same page being redered using PHP.<br />
This is to track various responses sent by the Apache Server for same page on different scenarios (like 200, 304, 503)</font><span id="more-22"></span></p>
<p><font color="#000000" face="verdana" size="2">I have a single php file as follows: </font></p>
<p><font color="#000000" face="verdana" size="2">&#8212;&#8212;-index.php&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
&lt;?php<br />
header(&#8216;Cache-Control: no-cache&#8217;);<br />
print(&#8216;&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;ISO-8859-1&#8243;?&gt;&#8217;.&#8221;\n&#8221;);<br />
?&gt;<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//WAPFORUM//DTD XHTML Mobile 1.0//EN&#8221; &#8220;http://www.wapforum.org/DTD/xhtml-mobile10.dtd&#8221;&gt;<br />
&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt; </font></p>
<p><font color="#000000" face="verdana" size="2">&lt;head&gt;&lt;title&gt;Test&lt;/title&gt;<br />
&lt;link type=&#8221;text/css&#8221; rel=&#8221;stylesheet&#8221; href=&#8221;mycss.css&#8221;/&gt;<br />
&lt;/head&gt; </font></p>
<p><font color="#000000" face="verdana" size="2">&lt;body&gt;<br />
&lt;p&gt;This page contains the header &#8216;Cache-Control: no-cache&#8217;&lt;br/&gt;<br />
&lt;?php echo date(&#8220;F j, Y, g:i:s a&#8221;); ?&gt;&lt;br/&gt; </font></p>
<p><font color="#000000" face="verdana" size="2">&lt;/body&gt;<br />
&lt;/html&gt;<br />
&#8212;&#8211;end of index.php&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; </font></p>
<p><font color="#000000" face="verdana" size="2">This page has a header &#8220;Cache-Control&#8221;. If this page is retrieved from the local Cache then 304 may be received. If Origin server sends then may be 200, if Origin server is unable to render then may be 503 received. Whereas it is required to capture these response headers in the same page and display. </font></p>
<p><font color="#000000" face="verdana" size="2">What code can be added to include the Status code and Status text to get displayed. I have Apache/v1.3.27 on Linux with PHP 4.4.8 </font></p>
]]></content:encoded>
			<wfw:commentRss>http://mfsotx.org/how-to-capture-http-response-headers-of-the-same-page-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
