<?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: Creating A Simple Rating Script With PHP And MySQL</title>
	<atom:link href="http://www.brainhandles.com/techno-thoughts/creating-a-simple-rating-script-with-php-and-mysql/feed" rel="self" type="application/rss+xml" />
	<link>http://www.brainhandles.com/techno-thoughts/creating-a-simple-rating-script-with-php-and-mysql</link>
	<description>Whatever&#039;s tugging at my brain handles</description>
	<lastBuildDate>Tue, 27 Dec 2011 19:46:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Greg Bulmash</title>
		<link>http://www.brainhandles.com/techno-thoughts/creating-a-simple-rating-script-with-php-and-mysql/comment-page-1#comment-11465</link>
		<dc:creator>Greg Bulmash</dc:creator>
		<pubDate>Wed, 15 Sep 2010 17:42:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainhandles.com/2007/04/25/creating-a-simple-rating-script-with-php-and-mysql/#comment-11465</guid>
		<description>Thanks. Fixed.</description>
		<content:encoded><![CDATA[<p>Thanks. Fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.brainhandles.com/techno-thoughts/creating-a-simple-rating-script-with-php-and-mysql/comment-page-1#comment-11464</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 15 Sep 2010 17:04:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainhandles.com/2007/04/25/creating-a-simple-rating-script-with-php-and-mysql/#comment-11464</guid>
		<description>You have a error in the string:

&lt;code&gt;$itemid = mysql_real_escape_string($_POST[&quot;item_id&quot;)];&lt;/code&gt;

Should be:

&lt;code&gt;$itemid = mysql_real_escape_string($_POST[&quot;item_id&quot;]);&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>You have a error in the string:</p>
<p><code>$itemid = mysql_real_escape_string($_POST["item_id")];</code></p>
<p>Should be:</p>
<p><code>$itemid = mysql_real_escape_string($_POST["item_id"]);</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Bulmash</title>
		<link>http://www.brainhandles.com/techno-thoughts/creating-a-simple-rating-script-with-php-and-mysql/comment-page-1#comment-6879</link>
		<dc:creator>Greg Bulmash</dc:creator>
		<pubDate>Sun, 29 Jun 2008 00:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainhandles.com/2007/04/25/creating-a-simple-rating-script-with-php-and-mysql/#comment-6879</guid>
		<description>Herald,

There are two ways to do what you request.  One is to break this all out into AJAX.  You still have the PHP scripts in separate files, but you use JavaScript in the main page to feed data to the scripts and process their responses into the page without having to refresh it.

I use AJAX to do my &lt;a href=&quot;http://calculators-free.com/fungoogle-compatibility-calculator-8&quot; rel=&quot;nofollow&quot;&gt;Google Compatibility Calculator&lt;/a&gt;.

The other way would be to put all the scripts into the page as functions and use some logic based on a variable passed by a post, session, cookie, or in the URL to control which script(s) run when the page is loaded.</description>
		<content:encoded><![CDATA[<p>Herald,</p>
<p>There are two ways to do what you request.  One is to break this all out into AJAX.  You still have the PHP scripts in separate files, but you use JavaScript in the main page to feed data to the scripts and process their responses into the page without having to refresh it.</p>
<p>I use AJAX to do my <a href="http://calculators-free.com/fungoogle-compatibility-calculator-8" rel="nofollow">Google Compatibility Calculator</a>.</p>
<p>The other way would be to put all the scripts into the page as functions and use some logic based on a variable passed by a post, session, cookie, or in the URL to control which script(s) run when the page is loaded.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Herald</title>
		<link>http://www.brainhandles.com/techno-thoughts/creating-a-simple-rating-script-with-php-and-mysql/comment-page-1#comment-6878</link>
		<dc:creator>Herald</dc:creator>
		<pubDate>Sat, 28 Jun 2008 23:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainhandles.com/2007/04/25/creating-a-simple-rating-script-with-php-and-mysql/#comment-6878</guid>
		<description>good intro ;)

But, lets say that i dont want to call an other page like the page  store-rating.php, but i want everything to hapend with one page in the main page there that the form exist .

Can you please implement or explain and in this case how we can make it real sir ?

Thanks in adavanca
waiting for your answer</description>
		<content:encoded><![CDATA[<p>good intro <img src='http://www.brainhandles.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>But, lets say that i dont want to call an other page like the page  store-rating.php, but i want everything to hapend with one page in the main page there that the form exist .</p>
<p>Can you please implement or explain and in this case how we can make it real sir ?</p>
<p>Thanks in adavanca<br />
waiting for your answer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: developercast.com &#187; Greg Bulmash&#8217;s Blog: Creating A Simple Rating Script With PHP And MySQL</title>
		<link>http://www.brainhandles.com/techno-thoughts/creating-a-simple-rating-script-with-php-and-mysql/comment-page-1#comment-161</link>
		<dc:creator>developercast.com &#187; Greg Bulmash&#8217;s Blog: Creating A Simple Rating Script With PHP And MySQL</dc:creator>
		<pubDate>Thu, 26 Apr 2007 20:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainhandles.com/2007/04/25/creating-a-simple-rating-script-with-php-and-mysql/#comment-161</guid>
		<description>[...] Sometimes, when you&#8217;re building an application, simpler is better. At least, that&#8217;s how Greg Bulmash approached it in his new post about creating a simple rating script for your site with PHP and MySQL.   There are lots of pre-packaged scripts out there to do almost anything you want, but in my experience a lot of them either do too much or donâ€™t do enough. Finding that Goldilocks style of &#8220;just right&#8221; takes a lot of searching and experimenting, or just plain hacking of existing scripts. But for simple functions, writing your own script that does exactly what you want can often be quicker and more satisfying. [...]</description>
		<content:encoded><![CDATA[<p>[...] Sometimes, when you&#8217;re building an application, simpler is better. At least, that&#8217;s how Greg Bulmash approached it in his new post about creating a simple rating script for your site with PHP and MySQL.   There are lots of pre-packaged scripts out there to do almost anything you want, but in my experience a lot of them either do too much or donâ€™t do enough. Finding that Goldilocks style of &#8220;just right&#8221; takes a lot of searching and experimenting, or just plain hacking of existing scripts. But for simple functions, writing your own script that does exactly what you want can often be quicker and more satisfying. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.brainhandles.com/techno-thoughts/creating-a-simple-rating-script-with-php-and-mysql/comment-page-1#comment-160</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Thu, 26 Apr 2007 17:14:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainhandles.com/2007/04/25/creating-a-simple-rating-script-with-php-and-mysql/#comment-160</guid>
		<description>Kudo&#039;s to putting the extra security in there.  PHP developers need to do that, as people will just cut and paste the code.</description>
		<content:encoded><![CDATA[<p>Kudo's to putting the extra security in there.  PHP developers need to do that, as people will just cut and paste the code.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

