<?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: CSS The Star Matrix Pre-loaded: Part 2</title>
	<atom:link href="http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/</link>
	<description>Internet Marketing, Website Promotion and Blogging Advice</description>
	<lastBuildDate>Sun, 29 Jan 2012 02:18:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Sleeper</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-179705</link>
		<dc:creator>Sleeper</dc:creator>
		<pubDate>Sat, 20 Nov 2010 17:21:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-179705</guid>
		<description>Solved... I read back over the thread - Fork had alrady provided the solution. Removing the concatentation from the Case.
Thanks!</description>
		<content:encoded><![CDATA[<p>Solved&#8230; I read back over the thread &#8211; Fork had alrady provided the solution. Removing the concatentation from the Case.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sleeper</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-177188</link>
		<dc:creator>Sleeper</dc:creator>
		<pubDate>Wed, 27 Oct 2010 11:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-177188</guid>
		<description>Hi, I recently came by this tutorial and it&#039;s just what I&#039;ve been lookin for - really nice! I have but one problem though:

I get the following error:
Undefined variable: classes in C:\wamp\www\RatingSystem\classes\rating.class.php on line 158

The stars show up fine, I click the selected range and then the error message shows and I get numbers listed vertically (1 to 5). After a browser refresh the stars reappear with the correct star selection.
The database is being written to successfully.

Any help greatly received.</description>
		<content:encoded><![CDATA[<p>Hi, I recently came by this tutorial and it&#8217;s just what I&#8217;ve been lookin for &#8211; really nice! I have but one problem though:</p>
<p>I get the following error:<br />
Undefined variable: classes in C:\wamp\www\RatingSystem\classes\rating.class.php on line 158</p>
<p>The stars show up fine, I click the selected range and then the error message shows and I get numbers listed vertically (1 to 5). After a browser refresh the stars reappear with the correct star selection.<br />
The database is being written to successfully.</p>
<p>Any help greatly received.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-169068</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 05 Jul 2010 22:32:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-169068</guid>
		<description>Hey,
So I&#039;m back to offer what little help I can. 

co.ador - that file goes in your main web directory. Also if its not going into the database, make sure your database settings are 100% and if you changed the name of the table you changed it in the rating.class.php file where directed to by this tutorial.

Sadesh - The split problem is easy, just go to php.net and search for split and it tells you the tag you should now use instead. (I believe preg_split is what should be used now). The other errors are because you have must have your database settings wrong. In the include all file you should have this line set to your database settings:
 Database::Initialize(&quot;mysql&quot;, &quot;localhost&quot;, &quot;3306&quot;, &quot;DATABASE NAME&quot;, &quot;USERNAME&quot;, &quot;PASSWORD&quot;);
If your mysql settings are default then you shouldn&#039;t have to change the first three items just the last three. Also like I said to co.ador, if you changed the table name from ratings make sure you adjust it as necessary.

Nicholas Smith - This script should work fine with php 4.3x. I can&#039;t say for sure, because I do use 5.x but you should be good as long as your database is setup.

Yolandie - Sorry, but its not that easy to just explain what you need to do. You will need some basic knowledge to handle the php and mysql. Try reading a php/mysql tutorial, I suggest webmonkey (http://www.webmonkey.com/2010/02/php_and_mysql_tutorial_-_lesson_1/). That is a more updated tutorial but I started out with a similar tutorial on webmonkey.</description>
		<content:encoded><![CDATA[<p>Hey,<br />
So I&#8217;m back to offer what little help I can. </p>
<p>co.ador &#8211; that file goes in your main web directory. Also if its not going into the database, make sure your database settings are 100% and if you changed the name of the table you changed it in the rating.class.php file where directed to by this tutorial.</p>
<p>Sadesh &#8211; The split problem is easy, just go to php.net and search for split and it tells you the tag you should now use instead. (I believe preg_split is what should be used now). The other errors are because you have must have your database settings wrong. In the include all file you should have this line set to your database settings:<br />
 Database::Initialize(&#8220;mysql&#8221;, &#8220;localhost&#8221;, &#8220;3306&#8243;, &#8220;DATABASE NAME&#8221;, &#8220;USERNAME&#8221;, &#8220;PASSWORD&#8221;);<br />
If your mysql settings are default then you shouldn&#8217;t have to change the first three items just the last three. Also like I said to co.ador, if you changed the table name from ratings make sure you adjust it as necessary.</p>
<p>Nicholas Smith &#8211; This script should work fine with php 4.3x. I can&#8217;t say for sure, because I do use 5.x but you should be good as long as your database is setup.</p>
<p>Yolandie &#8211; Sorry, but its not that easy to just explain what you need to do. You will need some basic knowledge to handle the php and mysql. Try reading a php/mysql tutorial, I suggest webmonkey (<a href="http://www.webmonkey.com/2010/02/php_and_mysql_tutorial_-_lesson_1/" rel="nofollow">http://www.webmonkey.com/2010/02/php_and_mysql_tutorial_-_lesson_1/</a>). That is a more updated tutorial but I started out with a similar tutorial on webmonkey.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yolandie</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-168089</link>
		<dc:creator>Yolandie</dc:creator>
		<pubDate>Fri, 18 Jun 2010 14:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-168089</guid>
		<description>Hello everyone! I have no experience with php, ajax, jquerie and only use dreamweaver to write my html, css code and very basic javascript. Part 1 was so easy, but i&#039;m not sure where to go from here as i don&#039;t have and don&#039;t know how to use php5 or MySQL as a prerequisite for part II of this tut to complete the backend.

Can someone please please please help me out over here?</description>
		<content:encoded><![CDATA[<p>Hello everyone! I have no experience with php, ajax, jquerie and only use dreamweaver to write my html, css code and very basic javascript. Part 1 was so easy, but i&#8217;m not sure where to go from here as i don&#8217;t have and don&#8217;t know how to use php5 or MySQL as a prerequisite for part II of this tut to complete the backend.</p>
<p>Can someone please please please help me out over here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicholas Smith</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-163175</link>
		<dc:creator>Nicholas Smith</dc:creator>
		<pubDate>Sat, 03 Apr 2010 03:50:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-163175</guid>
		<description>Hello, your script is a blessing. Would you be willing to tell me how to use it with php 4.3.11  I have yahoo hosting and they will not upgrade for another year.  Or will this work either way?</description>
		<content:encoded><![CDATA[<p>Hello, your script is a blessing. Would you be willing to tell me how to use it with php 4.3.11  I have yahoo hosting and they will not upgrade for another year.  Or will this work either way?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sadesh</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-161679</link>
		<dc:creator>Sadesh</dc:creator>
		<pubDate>Thu, 11 Mar 2010 15:25:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-161679</guid>
		<description>Hello!

I get this error message, I think it has something to do with me using php 5.x and some functions in this script that are not supported in this version\

Can somebody fill me in why I get the following error message after implementing?



Deprecated: Function split() is deprecated in C:\wamp\www\ThumbsUp\classes\database.class.php  on line 397

Notice: Undefined variable: varName in C:\wamp\www\ThumbsUp\classes\rating.class.php on line 132

Notice: Undefined variable: classes in C:\wamp\www\ThumbsUp\classes\rating.class.php on line 161
ERRORS:
Database Selection at 03/11/2010 15:24:04
Unknown database &#039;ratings&#039;

Query Failed at 03/11/2010 15:24:04
No database selected

Free Results Error at 03/11/2010 15:24:04
No database selected

Query Failed at 03/11/2010 15:24:04
No database selected

Free Results Error at 03/11/2010 15:24:04
No database selected</description>
		<content:encoded><![CDATA[<p>Hello!</p>
<p>I get this error message, I think it has something to do with me using php 5.x and some functions in this script that are not supported in this version\</p>
<p>Can somebody fill me in why I get the following error message after implementing?</p>
<p>Deprecated: Function split() is deprecated in C:\wamp\www\ThumbsUp\classes\database.class.php  on line 397</p>
<p>Notice: Undefined variable: varName in C:\wamp\www\ThumbsUp\classes\rating.class.php on line 132</p>
<p>Notice: Undefined variable: classes in C:\wamp\www\ThumbsUp\classes\rating.class.php on line 161<br />
ERRORS:<br />
Database Selection at 03/11/2010 15:24:04<br />
Unknown database &#8216;ratings&#8217;</p>
<p>Query Failed at 03/11/2010 15:24:04<br />
No database selected</p>
<p>Free Results Error at 03/11/2010 15:24:04<br />
No database selected</p>
<p>Query Failed at 03/11/2010 15:24:04<br />
No database selected</p>
<p>Free Results Error at 03/11/2010 15:24:04<br />
No database selected</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: co.ador</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-156891</link>
		<dc:creator>co.ador</dc:creator>
		<pubDate>Wed, 16 Dec 2009 17:39:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-156891</guid>
		<description>Chris where does the ajax.ratre.item.php file goes?

i am having some trouble again with entering the rating to the database it is not going in to the database?

any ideas

joelitos at hotmail.com</description>
		<content:encoded><![CDATA[<p>Chris where does the ajax.ratre.item.php file goes?</p>
<p>i am having some trouble again with entering the rating to the database it is not going in to the database?</p>
<p>any ideas</p>
<p>joelitos at hotmail.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-155518</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sat, 14 Nov 2009 21:20:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-155518</guid>
		<description>Also, just a late response to co.ador and Marc Morgan. I was having a similar problem and it was because I didn&#039;t have all of the files uploaded (mainly the ajax.rate.item.php) file.</description>
		<content:encoded><![CDATA[<p>Also, just a late response to co.ador and Marc Morgan. I was having a similar problem and it was because I didn&#8217;t have all of the files uploaded (mainly the ajax.rate.item.php) file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-155516</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sat, 14 Nov 2009 21:18:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-155516</guid>
		<description>Looks like there isn&#039;t any help here anymore, but I figured I would try. I am using this script and it works wonderfully. The one question I have is how can I add another item into the database. I have a members section to my site and people can only rate when they are logged in. I want to add the username to the database and have it input the name whenever an item is rated so I know who is rating what.

Thank you for this tutorial and any help.

Chris</description>
		<content:encoded><![CDATA[<p>Looks like there isn&#8217;t any help here anymore, but I figured I would try. I am using this script and it works wonderfully. The one question I have is how can I add another item into the database. I have a members section to my site and people can only rate when they are logged in. I want to add the username to the database and have it input the name whenever an item is rated so I know who is rating what.</p>
<p>Thank you for this tutorial and any help.</p>
<p>Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: co.ador</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-148273</link>
		<dc:creator>co.ador</dc:creator>
		<pubDate>Wed, 22 Jul 2009 04:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-148273</guid>
		<description>something similar is happening to me The &quot;rated&quot; is not showing the nostar row before any user has rated the item... how can pull the format information out the rated css class?</description>
		<content:encoded><![CDATA[<p>something similar is happening to me The &#8220;rated&#8221; is not showing the nostar row before any user has rated the item&#8230; how can pull the format information out the rated css class?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc Morgan</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-147600</link>
		<dc:creator>Marc Morgan</dc:creator>
		<pubDate>Wed, 08 Jul 2009 21:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-147600</guid>
		<description>Would there be a reason that this would work &quot;out of the box&quot; with &quot;rating-example.php&quot; but not when i try and use it with a different file to address the rating system.????

The on mouse roll over works but when i click, nothing happens... 

All of the paths are set correctly.  

Any ideas?

Thank you</description>
		<content:encoded><![CDATA[<p>Would there be a reason that this would work &#8220;out of the box&#8221; with &#8220;rating-example.php&#8221; but not when i try and use it with a different file to address the rating system.????</p>
<p>The on mouse roll over works but when i click, nothing happens&#8230; </p>
<p>All of the paths are set correctly.  </p>
<p>Any ideas?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc Morgan</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-147452</link>
		<dc:creator>Marc Morgan</dc:creator>
		<pubDate>Mon, 06 Jul 2009 16:19:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-147452</guid>
		<description>Hello,

I am trying to implement this rating system. I have changed it to 10 stars and the rollover is working correctly. When I click the stars it send to the database but the &quot;Rated&quot; phase doesn&#039;t get called... I can&#039;t seem to figure out how to implement this..

Can you please help me. Do you have paypal ?</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I am trying to implement this rating system. I have changed it to 10 stars and the rollover is working correctly. When I click the stars it send to the database but the &#8220;Rated&#8221; phase doesn&#8217;t get called&#8230; I can&#8217;t seem to figure out how to implement this..</p>
<p>Can you please help me. Do you have paypal ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-138959</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Tue, 21 Apr 2009 23:13:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-138959</guid>
		<description>Cpradio How much i would want you to appear here, 

I am getting this errors and I been having a pretty hard time figuring it out:


Warning: require_once(error.class.php) [function.require-once]: failed to open stream: No such file or directory in C:\wamp\www\include.all.php on line 2

Fatal error: require_once() [function.require]: Failed opening required &#039;error.class.php&#039; (include_path=&#039;.;C:\php5\pear&#039;) in C:\wamp\www\include.all.php on line 2</description>
		<content:encoded><![CDATA[<p>Cpradio How much i would want you to appear here, </p>
<p>I am getting this errors and I been having a pretty hard time figuring it out:</p>
<p>Warning: require_once(error.class.php) [function.require-once]: failed to open stream: No such file or directory in C:\wamp\www\include.all.php on line 2</p>
<p>Fatal error: require_once() [function.require]: Failed opening required &#8216;error.class.php&#8217; (include_path=&#8217;.;C:\php5\pear&#8217;) in C:\wamp\www\include.all.php on line 2</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-138061</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Thu, 16 Apr 2009 17:04:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-138061</guid>
		<description>I know I am going to fast but just answer the question at your pace, I have another query in step five you said to observe this line 
1.Database::Initialize(&quot;mysql&quot;, &quot;localhost&quot;, &quot;3306&quot;, &quot;ratings&quot;, &quot;username&quot;, &quot;password&quot;); 

And then replace it with my database respective name, username, password.

I don&#039;t know where is my database and how can I create one, what is it for and where can I find the name, username and password to replace if the database is created already.

Thank you in advance and excuseme for asking so many question behind the other both of your work your and paul&#039;s are awsome.</description>
		<content:encoded><![CDATA[<p>I know I am going to fast but just answer the question at your pace, I have another query in step five you said to observe this line<br />
1.Database::Initialize(&#8220;mysql&#8221;, &#8220;localhost&#8221;, &#8220;3306&#8243;, &#8220;ratings&#8221;, &#8220;username&#8221;, &#8220;password&#8221;); </p>
<p>And then replace it with my database respective name, username, password.</p>
<p>I don&#8217;t know where is my database and how can I create one, what is it for and where can I find the name, username and password to replace if the database is created already.</p>
<p>Thank you in advance and excuseme for asking so many question behind the other both of your work your and paul&#8217;s are awsome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/comment-page-1/#comment-138060</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Thu, 16 Apr 2009 16:56:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/06/04/css-the-star-matrix-pre-loaded-part-2/#comment-138060</guid>
		<description>Another query is that you wrote the class Rating with capital letters and worte it with lowercase letter does it make a difference?</description>
		<content:encoded><![CDATA[<p>Another query is that you wrote the class Rating with capital letters and worte it with lowercase letter does it make a difference?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

