<?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: TinyAjax: Another PHP 5 Ajax Library</title>
	<atom:link href="http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 17 May 2012 07:43:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Nahuel Alejandro Ramos</title>
		<link>http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library/comment-page-1#comment-251552</link>
		<dc:creator>Nahuel Alejandro Ramos</dc:creator>
		<pubDate>Thu, 14 Jun 2007 11:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library#comment-251552</guid>
		<description>It is and incredible work. I change some code in getPostData() function that let me send multiple values on a single variable as and Array. I modified it because I need get values from checkboxes with the same name. Example: 
The new getPostData() for me is:

	public static function getPostData($data) {
		$row = split(&quot;!ROW!&quot;, $data);
		$arr[] = &quot;&quot;;
		foreach($row as $val) {
			$tmp = split(&quot;!COL!&quot;, $val);
			if(sizeof($tmp) &gt; 1) {
				if (array_key_exists($tmp[0], $arr)) {
					if (is_array($arr[$tmp[0]])) {
						$subTmp = $arr[$tmp[0]];
						$subTmp[] = $tmp[1];
						$arr[$tmp[0]] = $subTmp;
					} else {
						$subTmp = array();
						$subTmp[] = $arr[$tmp[0]];
						$subTmp[] = $tmp[1];
						$arr[$tmp[0]] = $subTmp;
					};
				} else {
					$arr[$tmp[0]] = $tmp[1];
				};
			} else {
				$arr[$tmp[0]] = &quot;&quot;;
			};
		}
		$_POST = $arr;
		return $arr;
	}

Thanks for that perfect scripts.</description>
		<content:encoded><![CDATA[<p>It is and incredible work. I change some code in getPostData() function that let me send multiple values on a single variable as and Array. I modified it because I need get values from checkboxes with the same name. Example:<br />
The new getPostData() for me is:</p>
<p>	public static function getPostData($data) {<br />
		$row = split(&#8220;!ROW!&#8221;, $data);<br />
		$arr[] = &#8220;&#8221;;<br />
		foreach($row as $val) {<br />
			$tmp = split(&#8220;!COL!&#8221;, $val);<br />
			if(sizeof($tmp) &gt; 1) {<br />
				if (array_key_exists($tmp[0], $arr)) {<br />
					if (is_array($arr[$tmp[0]])) {<br />
						$subTmp = $arr[$tmp[0]];<br />
						$subTmp[] = $tmp[1];<br />
						$arr[$tmp[0]] = $subTmp;<br />
					} else {<br />
						$subTmp = array();<br />
						$subTmp[] = $arr[$tmp[0]];<br />
						$subTmp[] = $tmp[1];<br />
						$arr[$tmp[0]] = $subTmp;<br />
					};<br />
				} else {<br />
					$arr[$tmp[0]] = $tmp[1];<br />
				};<br />
			} else {<br />
				$arr[$tmp[0]] = &#8220;&#8221;;<br />
			};<br />
		}<br />
		$_POST = $arr;<br />
		return $arr;<br />
	}</p>
<p>Thanks for that perfect scripts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library/comment-page-1#comment-250758</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Wed, 23 May 2007 19:17:18 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library#comment-250758</guid>
		<description>One immediate advantage tinyajax over sajax is that it is neat.  In that it does not dump its javascript when you call the necessary setup functions where tinyajax writes out its code when you call the drawJavaScript method, which is essential, if you are using Smarty.

I was horrified when I opened the sajax library.</description>
		<content:encoded><![CDATA[<p>One immediate advantage tinyajax over sajax is that it is neat.  In that it does not dump its javascript when you call the necessary setup functions where tinyajax writes out its code when you call the drawJavaScript method, which is essential, if you are using Smarty.</p>
<p>I was horrified when I opened the sajax library.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rey</title>
		<link>http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library/comment-page-1#comment-77529</link>
		<dc:creator>Rey</dc:creator>
		<pubDate>Wed, 30 Aug 2006 02:28:56 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library#comment-77529</guid>
		<description>Can you help me? I have problems in my code, and the error is missing bevaior? This is my code....


		
		
			Name
			Manufucturer
		
		
			
				
				
			
			&quot;;	
	} // end function view
	
	$ajax = new TinyAjax();
	$ajax-&gt;showLoading();
	$ajax-&gt;exportFunction(&quot;view&quot;,&#039;&#039;);
	$ajax-&gt;exportFunction(&quot;insert&quot;,array(&quot;car&quot;,&quot;manufucturer&quot;));
	$ajax-&gt;process();
	$ajax-&gt;drawJavascript();
?&gt;


	My First Ajax Application



	
	
	Add a car:
	Car
	Manufucturer
	 

</description>
		<content:encoded><![CDATA[<p>Can you help me? I have problems in my code, and the error is missing bevaior? This is my code&#8230;.</p>
<p>			Name<br />
			Manufucturer</p>
<p>			&#8220;;<br />
	} // end function view</p>
<p>	$ajax = new TinyAjax();<br />
	$ajax-&gt;showLoading();<br />
	$ajax-&gt;exportFunction(&#8220;view&#8221;,&#8221;);<br />
	$ajax-&gt;exportFunction(&#8220;insert&#8221;,array(&#8220;car&#8221;,&#8221;manufucturer&#8221;));<br />
	$ajax-&gt;process();<br />
	$ajax-&gt;drawJavascript();<br />
?&gt;</p>
<p>	My First Ajax Application</p>
<p>	Add a car:<br />
	Car<br />
	Manufucturer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ted Smith</title>
		<link>http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library/comment-page-1#comment-3845</link>
		<dc:creator>Ted Smith</dc:creator>
		<pubDate>Wed, 22 Feb 2006 01:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library#comment-3845</guid>
		<description>Networking: The end of &#039;shoulder surfing? 
Some hackers like to &quot;shoulder surf,&quot; or steal unsuspecting PC users&#039; passwords by looking over their shoulders at the Internet cafÃ©. Others prefer to crack an account&#039;s password -- using sophisticated software programs. But new developments in network security are going to wipe out the shoulder surfers, and their cracker pals, experts tell United Press International&#039;s Networking. 

Graphical passwords are emerging -- images, not words or phrases, which authenticate access to a computer or a network. By Gene Koprowski</description>
		<content:encoded><![CDATA[<p>Networking: The end of &#8216;shoulder surfing?<br />
Some hackers like to &#8220;shoulder surf,&#8221; or steal unsuspecting PC users&#8217; passwords by looking over their shoulders at the Internet cafÃ©. Others prefer to crack an account&#8217;s password &#8212; using sophisticated software programs. But new developments in network security are going to wipe out the shoulder surfers, and their cracker pals, experts tell United Press International&#8217;s Networking. </p>
<p>Graphical passwords are emerging &#8212; images, not words or phrases, which authenticate access to a computer or a network. By Gene Koprowski</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library/comment-page-1#comment-3835</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Tue, 21 Feb 2006 20:39:01 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library#comment-3835</guid>
		<description>I don&#039;t understand what the serious draw to trying to do as little javascript coding as possible.  It benefits programmers a lot more to dig in a little and learn what&#039;s going on.  Otherwise you are stuck with this script kiddie mentality.  Javascript has always been primarily a cut and paste language for so many people and now with the presence AJAX is commanding it&#039;s finally an opportunity to open some eyes and learn a great language.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t understand what the serious draw to trying to do as little javascript coding as possible.  It benefits programmers a lot more to dig in a little and learn what&#8217;s going on.  Otherwise you are stuck with this script kiddie mentality.  Javascript has always been primarily a cut and paste language for so many people and now with the presence AJAX is commanding it&#8217;s finally an opportunity to open some eyes and learn a great language.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Garret</title>
		<link>http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library/comment-page-1#comment-3809</link>
		<dc:creator>Garret</dc:creator>
		<pubDate>Tue, 21 Feb 2006 15:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library#comment-3809</guid>
		<description>They forgot to use their define()&#039;d variable. :P</description>
		<content:encoded><![CDATA[<p>They forgot to use their define()&#8217;d variable. :P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dmytro Shteflyuk</title>
		<link>http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library/comment-page-1#comment-3808</link>
		<dc:creator>Dmytro Shteflyuk</dc:creator>
		<pubDate>Tue, 21 Feb 2006 15:01:05 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/tinyajax-another-php-5-ajax-library#comment-3808</guid>
		<description>Just another Sajax clone :-) I think it&#039;s too heavy in compare with Sajax (but both are simple of course). I don&#039;t see any reasons to produce so much equal libraries.</description>
		<content:encoded><![CDATA[<p>Just another Sajax clone :-) I think it&#8217;s too heavy in compare with Sajax (but both are simple of course). I don&#8217;t see any reasons to produce so much equal libraries.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

