<?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 for Hdeya team blog</title>
	<atom:link href="http://www.hdeya.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hdeya.com/blog</link>
	<description>We can make IT</description>
	<lastBuildDate>Tue, 20 Apr 2010 17:51:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Sorting items on the fly (AJAX) using jQuery UI Sortable, PHP &amp; MySQL. by Mahmoud M. Abdel-Fattah</title>
		<link>http://www.hdeya.com/blog/2009/05/sorting-items-on-the-fly-ajax-using-jquery-ui-sortable-php-mysql/comment-page-1/#comment-116</link>
		<dc:creator>Mahmoud M. Abdel-Fattah</dc:creator>
		<pubDate>Tue, 20 Apr 2010 17:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdeya.com/blog/?p=162#comment-116</guid>
		<description>Before asking for help, you should use real email, and you&#039;re using FAKE ONE, so how can we help you ?!</description>
		<content:encoded><![CDATA[<p>Before asking for help, you should use real email, and you&#8217;re using FAKE ONE, so how can we help you ?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting items on the fly (AJAX) using jQuery UI Sortable, PHP &amp; MySQL. by Arne</title>
		<link>http://www.hdeya.com/blog/2009/05/sorting-items-on-the-fly-ajax-using-jquery-ui-sortable-php-mysql/comment-page-1/#comment-115</link>
		<dc:creator>Arne</dc:creator>
		<pubDate>Tue, 20 Apr 2010 17:45:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdeya.com/blog/?p=162#comment-115</guid>
		<description>Since you didn&#039;t include your exact versions of compiled jQuery and jQuery UI, the script gives me &quot;there&#039;s an error with AJAX.&quot; I appreciate the tutorial and don&#039;t want to disparage you taking the time to share your work freely with the world, but if you&#039;re going to write a tutorial, put up all the files required, preferably as a downloadable ZIP, and take the time to explain the code.</description>
		<content:encoded><![CDATA[<p>Since you didn&#8217;t include your exact versions of compiled jQuery and jQuery UI, the script gives me &#8220;there&#8217;s an error with AJAX.&#8221; I appreciate the tutorial and don&#8217;t want to disparage you taking the time to share your work freely with the world, but if you&#8217;re going to write a tutorial, put up all the files required, preferably as a downloadable ZIP, and take the time to explain the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting items on the fly (AJAX) using jQuery UI Sortable, PHP &amp; MySQL. by paceto</title>
		<link>http://www.hdeya.com/blog/2009/05/sorting-items-on-the-fly-ajax-using-jquery-ui-sortable-php-mysql/comment-page-1/#comment-106</link>
		<dc:creator>paceto</dc:creator>
		<pubDate>Wed, 10 Mar 2010 14:11:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdeya.com/blog/?p=162#comment-106</guid>
		<description>// Great tutorial but ... please fix this SQL INJECTION style mysql_query

!!!!!!!!! SQL INJECTION via $menu[$i] !!!!!!!!!!
mysql_query(&quot;UPDATE `menu` SET `sort`=&quot; . $i . &quot; WHERE `id`=&#039;&quot; . $menu[$i] . &quot;&#039;&quot;) or die(mysql_error());
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

$menu[$i] variable is send by the client so it&#039;s insecure ...
what if I send post ... $menu[$i] = blabla&#039; or 1=1;#   ... this will update all records in this table ...

!!!!!!!! CORRECT !!!!!!!!!!!!!
mysql_query(&quot;UPDATE `menu` SET `sort`=&quot; . mysql_real_escape_string($i) . &quot; WHERE `id`=&#039;&quot; . mysql_real_escape_string($menu[$i]) . &quot;&#039;&quot;) or die(mysql_error());
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Great tutorial 10x again</description>
		<content:encoded><![CDATA[<p>// Great tutorial but &#8230; please fix this SQL INJECTION style mysql_query</p>
<p>!!!!!!!!! SQL INJECTION via $menu[$i] !!!!!!!!!!<br />
mysql_query(&#8220;UPDATE `menu` SET `sort`=&#8221; . $i . &#8221; WHERE `id`=&#8217;&#8221; . $menu[$i] . &#8220;&#8216;&#8221;) or die(mysql_error());<br />
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!</p>
<p>$menu[$i] variable is send by the client so it&#8217;s insecure &#8230;<br />
what if I send post &#8230; $menu[$i] = blabla&#8217; or 1=1;#   &#8230; this will update all records in this table &#8230;</p>
<p>!!!!!!!! CORRECT !!!!!!!!!!!!!<br />
mysql_query(&#8220;UPDATE `menu` SET `sort`=&#8221; . mysql_real_escape_string($i) . &#8221; WHERE `id`=&#8217;&#8221; . mysql_real_escape_string($menu[$i]) . &#8220;&#8216;&#8221;) or die(mysql_error());<br />
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!</p>
<p>Great tutorial 10x again</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting items on the fly (AJAX) using jQuery UI Sortable, PHP &amp; MySQL. by jorin</title>
		<link>http://www.hdeya.com/blog/2009/05/sorting-items-on-the-fly-ajax-using-jquery-ui-sortable-php-mysql/comment-page-1/#comment-104</link>
		<dc:creator>jorin</dc:creator>
		<pubDate>Sun, 14 Feb 2010 16:50:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdeya.com/blog/?p=162#comment-104</guid>
		<description>still doesnt makes sense where the $_POST[&quot;menu&quot;] variable is beeing created..</description>
		<content:encoded><![CDATA[<p>still doesnt makes sense where the $_POST["menu"] variable is beeing created..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting items on the fly (AJAX) using jQuery UI Sortable, PHP &amp; MySQL. by lardlad</title>
		<link>http://www.hdeya.com/blog/2009/05/sorting-items-on-the-fly-ajax-using-jquery-ui-sortable-php-mysql/comment-page-1/#comment-103</link>
		<dc:creator>lardlad</dc:creator>
		<pubDate>Fri, 05 Feb 2010 19:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdeya.com/blog/?p=162#comment-103</guid>
		<description>This got me hung up too. I think this is where &#039;menu&#039; is posted from:
echo &#039;&#039; .

I guess the syntax looks for an id and everything after the &quot;_&quot; is what gets posted.</description>
		<content:encoded><![CDATA[<p>This got me hung up too. I think this is where &#8216;menu&#8217; is posted from:<br />
echo &#8221; .</p>
<p>I guess the syntax looks for an id and everything after the &#8220;_&#8221; is what gets posted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Generate thumbnails automatically for uploaded images on OpenWYSIWYG by Koualsky</title>
		<link>http://www.hdeya.com/blog/2009/05/generate-thumbnails-automatically-for-uploaded-images-on-openwysiwyg/comment-page-1/#comment-101</link>
		<dc:creator>Koualsky</dc:creator>
		<pubDate>Thu, 28 Jan 2010 08:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdeya.com/blog/?p=154#comment-101</guid>
		<description>Silly question from newbie to pros:

why do such editors like OpenWYSIWYG trim any whitespace in html view? Is it necessary to right operation in visual mode?

Just asking because sometimes I used to insert ready html blocks with explicit styling classes from my external css, when there&#039;s a need for html re-editing, it&#039;s getting hard to move around such trimmed markup.

Thanks &amp; Greets

ps. great blog! keep on developing it!</description>
		<content:encoded><![CDATA[<p>Silly question from newbie to pros:</p>
<p>why do such editors like OpenWYSIWYG trim any whitespace in html view? Is it necessary to right operation in visual mode?</p>
<p>Just asking because sometimes I used to insert ready html blocks with explicit styling classes from my external css, when there&#8217;s a need for html re-editing, it&#8217;s getting hard to move around such trimmed markup.</p>
<p>Thanks &amp; Greets</p>
<p>ps. great blog! keep on developing it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting items on the fly (AJAX) using jQuery UI Sortable, PHP &amp; MySQL. by sholn</title>
		<link>http://www.hdeya.com/blog/2009/05/sorting-items-on-the-fly-ajax-using-jquery-ui-sortable-php-mysql/comment-page-1/#comment-100</link>
		<dc:creator>sholn</dc:creator>
		<pubDate>Fri, 15 Jan 2010 18:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdeya.com/blog/?p=162#comment-100</guid>
		<description>Hi there!
nice tutorial, I&#039;ve used with Drupal and works really fine thx! 
I own you a beer ;)</description>
		<content:encoded><![CDATA[<p>Hi there!<br />
nice tutorial, I&#8217;ve used with Drupal and works really fine thx!<br />
I own you a beer <img src='http://www.hdeya.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 20 Useful PHP Components &amp; Tutorials for Everyday Project by 3m masr</title>
		<link>http://www.hdeya.com/blog/2009/03/20-useful-php-components-tutorials-for-everyday-project/comment-page-1/#comment-98</link>
		<dc:creator>3m masr</dc:creator>
		<pubDate>Tue, 01 Dec 2009 20:22:19 +0000</pubDate>
		<guid isPermaLink="false">tag:google.com,2005:reader/item/cd45c4c9b46876ec#comment-98</guid>
		<description>thanks for sharing .. really so good !</description>
		<content:encoded><![CDATA[<p>thanks for sharing .. really so good !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting items on the fly (AJAX) using jQuery UI Sortable, PHP &amp; MySQL. by Colin O. Below</title>
		<link>http://www.hdeya.com/blog/2009/05/sorting-items-on-the-fly-ajax-using-jquery-ui-sortable-php-mysql/comment-page-1/#comment-97</link>
		<dc:creator>Colin O. Below</dc:creator>
		<pubDate>Mon, 23 Nov 2009 02:52:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdeya.com/blog/?p=162#comment-97</guid>
		<description>Hi,

is it possible to post more data than only one array? Or add some data tho this array before post to php? 

I have more than one of these sortable div and i&#039;d like to add the possibility to move elements of one sortable div to another sortable div. 

How would you solve this problem?

Regards
Colin</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>is it possible to post more data than only one array? Or add some data tho this array before post to php? </p>
<p>I have more than one of these sortable div and i&#8217;d like to add the possibility to move elements of one sortable div to another sortable div. </p>
<p>How would you solve this problem?</p>
<p>Regards<br />
Colin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 20 Useful PHP Components &amp; Tutorials for Everyday Project by Egypt Web Design</title>
		<link>http://www.hdeya.com/blog/2009/03/20-useful-php-components-tutorials-for-everyday-project/comment-page-1/#comment-91</link>
		<dc:creator>Egypt Web Design</dc:creator>
		<pubDate>Sat, 17 Oct 2009 20:11:34 +0000</pubDate>
		<guid isPermaLink="false">tag:google.com,2005:reader/item/cd45c4c9b46876ec#comment-91</guid>
		<description>An adorable collection ... thanks for sharing :)</description>
		<content:encoded><![CDATA[<p>An adorable collection &#8230; thanks for sharing <img src='http://www.hdeya.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
