<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: WebTester</title>
	<atom:link href="http://www.steveneppler.com/blog/2006/01/19/webtester/feed" rel="self" type="application/rss+xml" />
	<link>http://www.steveneppler.com/blog/2006/01/19/webtester</link>
	<description>My life, technology, and everything in between</description>
	<lastBuildDate>Thu, 25 Feb 2010 10:07:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: eppler</title>
		<link>http://www.steveneppler.com/blog/2006/01/19/webtester/comment-page-1#comment-35</link>
		<dc:creator>eppler</dc:creator>
		<pubDate>Wed, 08 Mar 2006 00:35:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.steveneppler.com/blog/2006/01/19/webtester#comment-35</guid>
		<description>Currently I have no plans on making it open source, but you can see a demo at http://webtester.epplersoft.com. This is not the final so there may be some bugs, but it works.

As for the case sensitive part, here is an example. First, here&#039;s the form&#039;s text field input.  Notice that &quot;name&quot; is lowercase:

&lt;strong&gt;input type=&quot;text&quot; name=&quot;name&quot;
&lt;/strong&gt;

ASP:

&lt;strong&gt; var = Request.Form(&quot;Name&quot;)  &#039;var = Whatever is posted
var = Request.Form(&quot;name&quot;)  &#039;var = Whatever is posted&lt;/strong&gt;

In PHP, the variable &#039;$var&#039; wouldn&#039;t get set to the correct value if you weren&#039;t careful:

PHP

&lt;strong&gt; $var = $_POST[&#039;Name&#039;];  // $var = nothing
$var = $_POST[&#039;name&#039;];  // $var = Whatever is posted&lt;/strong&gt;

Hope that clears things up.  Thanks,

Steven</description>
		<content:encoded><![CDATA[<p>Currently I have no plans on making it open source, but you can see a demo at <a href="http://webtester.epplersoft.com" rel="nofollow">http://webtester.epplersoft.com</a>. This is not the final so there may be some bugs, but it works.</p>
<p>As for the case sensitive part, here is an example. First, here&#8217;s the form&#8217;s text field input.  Notice that &#8220;name&#8221; is lowercase:</p>
<p><strong>input type=&#8221;text&#8221; name=&#8221;name&#8221;<br />
</strong></p>
<p>ASP:</p>
<p><strong> var = Request.Form(&#8220;Name&#8221;)  &#8216;var = Whatever is posted<br />
var = Request.Form(&#8220;name&#8221;)  &#8216;var = Whatever is posted</strong></p>
<p>In PHP, the variable &#8216;$var&#8217; wouldn&#8217;t get set to the correct value if you weren&#8217;t careful:</p>
<p>PHP</p>
<p><strong> $var = $_POST['Name'];  // $var = nothing<br />
$var = $_POST['name'];  // $var = Whatever is posted</strong></p>
<p>Hope that clears things up.  Thanks,</p>
<p>Steven</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chandra</title>
		<link>http://www.steveneppler.com/blog/2006/01/19/webtester/comment-page-1#comment-34</link>
		<dc:creator>Chandra</dc:creator>
		<pubDate>Tue, 07 Mar 2006 23:11:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.steveneppler.com/blog/2006/01/19/webtester#comment-34</guid>
		<description>Hi Eppler.

Glad you got it working! Any thought about making it opensource?:)

But that a very good you brought up. Case Sensitive part, could provide any example?

Go developers:)

Chandra</description>
		<content:encoded><![CDATA[<p>Hi Eppler.</p>
<p>Glad you got it working! Any thought about making it opensource?:)</p>
<p>But that a very good you brought up. Case Sensitive part, could provide any example?</p>
<p>Go developers:)</p>
<p>Chandra</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eppler</title>
		<link>http://www.steveneppler.com/blog/2006/01/19/webtester/comment-page-1#comment-33</link>
		<dc:creator>eppler</dc:creator>
		<pubDate>Mon, 06 Mar 2006 21:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.steveneppler.com/blog/2006/01/19/webtester#comment-33</guid>
		<description>I have finished with the port.  It took a while, and the most common problem was the old ASP code wasn&#039;t case sensitive, while PHP is.  I am now working on a install script for WebTester so it can be installed easily.</description>
		<content:encoded><![CDATA[<p>I have finished with the port.  It took a while, and the most common problem was the old ASP code wasn&#8217;t case sensitive, while PHP is.  I am now working on a install script for WebTester so it can be installed easily.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chandra</title>
		<link>http://www.steveneppler.com/blog/2006/01/19/webtester/comment-page-1#comment-32</link>
		<dc:creator>Chandra</dc:creator>
		<pubDate>Wed, 01 Mar 2006 01:13:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.steveneppler.com/blog/2006/01/19/webtester#comment-32</guid>
		<description>Hello Steven

Am a php web tested. I found your blog very interesting. I am trying to do something like this for a long time.......can you tell how far are you down the php porting...

Regards

Chandra</description>
		<content:encoded><![CDATA[<p>Hello Steven</p>
<p>Am a php web tested. I found your blog very interesting. I am trying to do something like this for a long time&#8230;&#8230;.can you tell how far are you down the php porting&#8230;</p>
<p>Regards</p>
<p>Chandra</p>
]]></content:encoded>
	</item>
</channel>
</rss>
