<?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 Emir Plicanic</title>
	<atom:link href="http://www.emirplicanic.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.emirplicanic.com</link>
	<description>Work, Script, Tutorials, Photography and Fun!</description>
	<lastBuildDate>Wed, 22 Feb 2012 02:27:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on PHP/MySQL search engine script by Erwin</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-1032</link>
		<dc:creator>Erwin</dc:creator>
		<pubDate>Wed, 22 Feb 2012 02:27:12 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-1032</guid>
		<description>The script appears to be working as when I run it without entering something to search for, it gives the proper error, &quot;Search Error Please enter a search..&quot; However, when I enter a keyword to be searched for, for example the word &quot;name&quot; which i have in the database, the results are &quot;Search results for: name ...&quot;  I have checked my code and updated database connection and tables. can you please help ASAP.</description>
		<content:encoded><![CDATA[<p>The script appears to be working as when I run it without entering something to search for, it gives the proper error, &#8220;Search Error Please enter a search..&#8221; However, when I enter a keyword to be searched for, for example the word &#8220;name&#8221; which i have in the database, the results are &#8220;Search results for: name &#8230;&#8221;  I have checked my code and updated database connection and tables. can you please help ASAP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Methanie</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1031</link>
		<dc:creator>Methanie</dc:creator>
		<pubDate>Tue, 21 Feb 2012 22:35:19 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1031</guid>
		<description>Well, of course I posted the comment and then got it all sorted out.  It was simply a matter of checking for/declaring variables:

I added this after $log-&gt;encrypt = false:
if(isset($_SESSION[&#039;loggedin&#039;])){
	$_SESSION[&#039;loggedin&#039;] = true;
} else {
	$_SESSION[&#039;loggedin&#039;] = false;
}

And this in the class.login.php on the first line of the logincheck function:
if (!isset($row)){
    		$row = &#039;&#039;;
    	}</description>
		<content:encoded><![CDATA[<p>Well, of course I posted the comment and then got it all sorted out.  It was simply a matter of checking for/declaring variables:</p>
<p>I added this after $log-&gt;encrypt = false:<br />
if(isset($_SESSION['loggedin'])){<br />
	$_SESSION['loggedin'] = true;<br />
} else {<br />
	$_SESSION['loggedin'] = false;<br />
}</p>
<p>And this in the class.login.php on the first line of the logincheck function:<br />
if (!isset($row)){<br />
    		$row = &#8221;;<br />
    	}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Methanie</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1030</link>
		<dc:creator>Methanie</dc:creator>
		<pubDate>Tue, 21 Feb 2012 22:09:49 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1030</guid>
		<description>Hello;

Thanks so much for the script.  I&#039;m implementing it on a server that is using PHP 5.3, and I keep getting the following error:
Notice: Undefined index: loggedin in /htdocs/www/edit/index.php on line 6 Notice: Undefined variable: row in /htdocs/www/edit/class.login.php on line 103

And I am using the code provided to password protect a page:
include(&quot;class.login.php&quot;);
$log = new logmein();
$log-&gt;encrypt = false; //set encryption
//parameters are(SESSION, name of the table, name of the password field, name of the username field)
if($log-&gt;logincheck($_SESSION[&#039;loggedin&#039;], &quot;logon&quot;, &quot;password&quot;, &quot;useremail&quot;) == false){
    //do something if NOT logged in. For example, redirect to login page or display message.
    echo(&quot;You are not logged in.&quot;);
}else{
    //do something else if logged in.
    echo(&quot;You are logged in.&quot;);
}

Has anyone else had this issue?</description>
		<content:encoded><![CDATA[<p>Hello;</p>
<p>Thanks so much for the script.  I&#8217;m implementing it on a server that is using PHP 5.3, and I keep getting the following error:<br />
Notice: Undefined index: loggedin in /htdocs/www/edit/index.php on line 6 Notice: Undefined variable: row in /htdocs/www/edit/class.login.php on line 103</p>
<p>And I am using the code provided to password protect a page:<br />
include(&#8220;class.login.php&#8221;);<br />
$log = new logmein();<br />
$log-&gt;encrypt = false; //set encryption<br />
//parameters are(SESSION, name of the table, name of the password field, name of the username field)<br />
if($log-&gt;logincheck($_SESSION['loggedin'], &#8220;logon&#8221;, &#8220;password&#8221;, &#8220;useremail&#8221;) == false){<br />
    //do something if NOT logged in. For example, redirect to login page or display message.<br />
    echo(&#8220;You are not logged in.&#8221;);<br />
}else{<br />
    //do something else if logged in.<br />
    echo(&#8220;You are logged in.&#8221;);<br />
}</p>
<p>Has anyone else had this issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UHits &#8211; PHP proxy hits generator by pcmags</title>
		<link>http://www.emirplicanic.com/php/uhits-php-proxy-hits-generator#comment-1029</link>
		<dc:creator>pcmags</dc:creator>
		<pubDate>Thu, 16 Feb 2012 15:37:41 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/uhits-php-fake-hits-generator#comment-1029</guid>
		<description>file permission shoul be 777?</description>
		<content:encoded><![CDATA[<p>file permission shoul be 777?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Dave</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1027</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Mon, 13 Feb 2012 20:01:33 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1027</guid>
		<description>Yes, my link was emailed to me a few minutes later. Apologies for the confusion. Great help!</description>
		<content:encoded><![CDATA[<p>Yes, my link was emailed to me a few minutes later. Apologies for the confusion. Great help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI: Highlight multiple dates in jquery datepicker by Samuil L. G.</title>
		<link>http://www.emirplicanic.com/javascript/jquery-ui-highlight-multiple-dates-in-jquery-datepicker#comment-1026</link>
		<dc:creator>Samuil L. G.</dc:creator>
		<pubDate>Fri, 10 Feb 2012 20:38:41 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/javascript/jquery-highlight-multiple-date#comment-1026</guid>
		<description>Hi from Bulgaria and 10x a lot ! Very good work !</description>
		<content:encoded><![CDATA[<p>Hi from Bulgaria and 10x a lot ! Very good work !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UHits &#8211; PHP proxy hits generator by Levi</title>
		<link>http://www.emirplicanic.com/php/uhits-php-proxy-hits-generator#comment-1025</link>
		<dc:creator>Levi</dc:creator>
		<pubDate>Wed, 08 Feb 2012 23:45:01 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/uhits-php-fake-hits-generator#comment-1025</guid>
		<description>What type of program do I use to make this script work? I am using cygwin but its not working</description>
		<content:encoded><![CDATA[<p>What type of program do I use to make this script work? I am using cygwin but its not working</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Laurent</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1024</link>
		<dc:creator>Laurent</dc:creator>
		<pubDate>Mon, 06 Feb 2012 22:12:54 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1024</guid>
		<description>Hi, i&#039;ve purchased your script..
But.. How to create à new user?</description>
		<content:encoded><![CDATA[<p>Hi, i&#8217;ve purchased your script..<br />
But.. How to create à new user?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by wassim</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-1023</link>
		<dc:creator>wassim</dc:creator>
		<pubDate>Mon, 06 Feb 2012 16:39:54 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-1023</guid>
		<description>thanks for the nice script, there&#039;s a problem though that when you navigate to the second page, some results appear again ( repeated ). Any ideas ?

&amp; about the updated script, what does it have more ? and how much is the price ? Thanks :)</description>
		<content:encoded><![CDATA[<p>thanks for the nice script, there&#8217;s a problem though that when you navigate to the second page, some results appear again ( repeated ). Any ideas ?</p>
<p>&amp; about the updated script, what does it have more ? and how much is the price ? Thanks <img src='http://d17af1h00jafae.cloudfront.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by tendai</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-1022</link>
		<dc:creator>tendai</dc:creator>
		<pubDate>Mon, 06 Feb 2012 15:02:32 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-1022</guid>
		<description>it doesnt really need to work.

it&#039;s the concept that matters</description>
		<content:encoded><![CDATA[<p>it doesnt really need to work.</p>
<p>it&#8217;s the concept that matters</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by tendai</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-1021</link>
		<dc:creator>tendai</dc:creator>
		<pubDate>Mon, 06 Feb 2012 14:59:50 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-1021</guid>
		<description>I got to say this in shona &quot;wakapenga mface&quot;

This is a powerful algorithm.

Can&#039;t wait to plug it into my site...</description>
		<content:encoded><![CDATA[<p>I got to say this in shona &#8220;wakapenga mface&#8221;</p>
<p>This is a powerful algorithm.</p>
<p>Can&#8217;t wait to plug it into my site&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by FARUK DEMIR</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1020</link>
		<dc:creator>FARUK DEMIR</dc:creator>
		<pubDate>Sun, 05 Feb 2012 21:58:24 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1020</guid>
		<description>I&#039;m Faruk and from TURKEY. Thank you so so much for up login code. us code, re so so thansksss. my dm is Oracle  and conevrt db,


if(isset($baglanti)) ocilogoff ($baglanti);

$db = &quot;(DESCRIPTION = 
         (ADDRESS = (PROTOCOL = TCP)(HOST = CF)(PORT = 1521))
           (CONNECT_DATA =(SERVER = DEDICATED)
           (SERVICE_NAME = XE)))&quot;;

function baglan ($user, $pass, $db)
{
$baglanti = @ociplogon($user, $pass, $db, &quot;UTF8&quot;) or die(&quot;baglanti hatasi&quot;);
return $baglanti;
}
---------------------------
function dbconnect(){        
$baglanti = baglan(&#039;webuser&#039;, &#039;webuser&#039;, $db);
		return;    
	           }
----------------------------------------------------


for others friands, :)

retry thanks, see u latter...</description>
		<content:encoded><![CDATA[<p>I&#8217;m Faruk and from TURKEY. Thank you so so much for up login code. us code, re so so thansksss. my dm is Oracle  and conevrt db,</p>
<p>if(isset($baglanti)) ocilogoff ($baglanti);</p>
<p>$db = &#8220;(DESCRIPTION =<br />
         (ADDRESS = (PROTOCOL = TCP)(HOST = CF)(PORT = 1521))<br />
           (CONNECT_DATA =(SERVER = DEDICATED)<br />
           (SERVICE_NAME = XE)))&#8221;;</p>
<p>function baglan ($user, $pass, $db)<br />
{<br />
$baglanti = @ociplogon($user, $pass, $db, &#8220;UTF8&#8243;) or die(&#8220;baglanti hatasi&#8221;);<br />
return $baglanti;<br />
}<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
function dbconnect(){<br />
$baglanti = baglan(&#8216;webuser&#8217;, &#8216;webuser&#8217;, $db);<br />
		return;<br />
	           }<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>for others friands, <img src='http://d17af1h00jafae.cloudfront.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>retry thanks, see u latter&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Remi</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1019</link>
		<dc:creator>Remi</dc:creator>
		<pubDate>Sun, 05 Feb 2012 21:43:19 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1019</guid>
		<description>OK found it now!
Thanks a lot</description>
		<content:encoded><![CDATA[<p>OK found it now!<br />
Thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by eplicanic</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1018</link>
		<dc:creator>eplicanic</dc:creator>
		<pubDate>Sun, 05 Feb 2012 14:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1018</guid>
		<description>Remi, you should have received an email with a download link. Please check your junk mail folders. It usually takes fee minutes from the time PayPal processes the payment to when the download link is generated and sent to you.</description>
		<content:encoded><![CDATA[<p>Remi, you should have received an email with a download link. Please check your junk mail folders. It usually takes fee minutes from the time PayPal processes the payment to when the download link is generated and sent to you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Remi</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1017</link>
		<dc:creator>Remi</dc:creator>
		<pubDate>Sun, 05 Feb 2012 10:29:56 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1017</guid>
		<description>Hello eplicanic,
I paid for this script and no more news from PayPal or you.
What can I do to get what I paid for?</description>
		<content:encoded><![CDATA[<p>Hello eplicanic,<br />
I paid for this script and no more news from PayPal or you.<br />
What can I do to get what I paid for?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Change the jQuery UI button icon based on the buttons state (i.e. checked/unchecked) by Michael</title>
		<link>http://www.emirplicanic.com/javascript/change-the-jquery-ui-button-icon-based-on-the-buttons-state#comment-1016</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sat, 04 Feb 2012 16:55:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.emirplicanic.com/?p=896#comment-1016</guid>
		<description>Thanks, exactly waht i was looking for.

Seams that jquery save the active (last clicked radio) in cookie or something, when reloading the page i get the active class set, but with wrong icon. so i copied you each block bevor the listener, and it worked

now i have one problem and dont want to fix it quick&#039;n&#039;dirty
where or how to add text to the lable?
by adding the button line-wrap, dont looks very goog
the button in the buttonset dont calculated the with!?
how to fix this?</description>
		<content:encoded><![CDATA[<p>Thanks, exactly waht i was looking for.</p>
<p>Seams that jquery save the active (last clicked radio) in cookie or something, when reloading the page i get the active class set, but with wrong icon. so i copied you each block bevor the listener, and it worked</p>
<p>now i have one problem and dont want to fix it quick&#8217;n'dirty<br />
where or how to add text to the lable?<br />
by adding the button line-wrap, dont looks very goog<br />
the button in the buttonset dont calculated the with!?<br />
how to fix this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by eplicanic</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1015</link>
		<dc:creator>eplicanic</dc:creator>
		<pubDate>Fri, 03 Feb 2012 14:16:26 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1015</guid>
		<description>Payment processing is done by PayPal and download link is generated dynamically. It can take few minutes for the link to be emailed to the purchaser. The comments about downloading are from people who didn&#039;t wait enough to get it. Thus, rest assured that everyone who purchased the script also got it!</description>
		<content:encoded><![CDATA[<p>Payment processing is done by PayPal and download link is generated dynamically. It can take few minutes for the link to be emailed to the purchaser. The comments about downloading are from people who didn&#8217;t wait enough to get it. Thus, rest assured that everyone who purchased the script also got it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Function to Generate HTML Table Using MySQL Database Data by Jessica_Y</title>
		<link>http://www.emirplicanic.com/php/php-function-to-generate-html-table-using-mysql-database-data#comment-1014</link>
		<dc:creator>Jessica_Y</dc:creator>
		<pubDate>Fri, 03 Feb 2012 08:05:38 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-function-mysql-to-html#comment-1014</guid>
		<description>Very useful code.
Thanks a lot.
It generate table with sql data correctly.
But i got this warning .
Notice: Undefined variable:
I don&#039;t know why :)</description>
		<content:encoded><![CDATA[<p>Very useful code.<br />
Thanks a lot.<br />
It generate table with sql data correctly.<br />
But i got this warning .<br />
Notice: Undefined variable:<br />
I don&#8217;t know why <img src='http://d17af1h00jafae.cloudfront.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Omar</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1013</link>
		<dc:creator>Omar</dc:creator>
		<pubDate>Fri, 03 Feb 2012 06:28:03 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1013</guid>
		<description>Well i want to try it but the recent comments say that people had trouble DLing</description>
		<content:encoded><![CDATA[<p>Well i want to try it but the recent comments say that people had trouble DLing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a Scrolling Text Box using JavaScript by Max</title>
		<link>http://www.emirplicanic.com/javascript/create-a-scrolling-text-box-using-javascript#comment-1012</link>
		<dc:creator>Max</dc:creator>
		<pubDate>Thu, 02 Feb 2012 09:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/javascript/javascript-scrolling-text#comment-1012</guid>
		<description>&quot;This can be easily done using jQuery&quot; - do you have a reference?</description>
		<content:encoded><![CDATA[<p>&#8220;This can be easily done using jQuery&#8221; &#8211; do you have a reference?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Hegra</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-1011</link>
		<dc:creator>Hegra</dc:creator>
		<pubDate>Wed, 01 Feb 2012 15:35:39 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-1011</guid>
		<description>Script looks nice, but does not work. I get: Undefined index: s in search.php on line 18 and several other errors.</description>
		<content:encoded><![CDATA[<p>Script looks nice, but does not work. I get: Undefined index: s in search.php on line 18 and several other errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by pdf</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-1010</link>
		<dc:creator>pdf</dc:creator>
		<pubDate>Mon, 30 Jan 2012 10:37:36 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-1010</guid>
		<description>i want to use in my project.. thanks a lot.. Very usefull..</description>
		<content:encoded><![CDATA[<p>i want to use in my project.. thanks a lot.. Very usefull..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by eplicanic</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-1009</link>
		<dc:creator>eplicanic</dc:creator>
		<pubDate>Sun, 29 Jan 2012 04:03:53 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-1009</guid>
		<description>You should receive an email with download link. Please check your junk folders. If you don&#039;t receive an email in next half hour let me know.</description>
		<content:encoded><![CDATA[<p>You should receive an email with download link. Please check your junk folders. If you don&#8217;t receive an email in next half hour let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Dele Oyediji</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-1008</link>
		<dc:creator>Dele Oyediji</dc:creator>
		<pubDate>Sun, 29 Jan 2012 03:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-1008</guid>
		<description>I paid to download the code and i didnt get anything</description>
		<content:encoded><![CDATA[<p>I paid to download the code and i didnt get anything</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read CSS files with PHP by eplicanic</title>
		<link>http://www.emirplicanic.com/php/read-css-files-with-php#comment-1007</link>
		<dc:creator>eplicanic</dc:creator>
		<pubDate>Sat, 28 Jan 2012 21:36:22 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/read-css-files-with-php#comment-1007</guid>
		<description>You could use it to create a GUI CSS editor for a CMS :)</description>
		<content:encoded><![CDATA[<p>You could use it to create a GUI CSS editor for a CMS <img src='http://d17af1h00jafae.cloudfront.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Basil</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1006</link>
		<dc:creator>Basil</dc:creator>
		<pubDate>Sat, 28 Jan 2012 00:34:50 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1006</guid>
		<description>Please can you show me how can i used your class with Ajax.</description>
		<content:encoded><![CDATA[<p>Please can you show me how can i used your class with Ajax.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Dave</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1005</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Fri, 27 Jan 2012 19:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1005</guid>
		<description>I just purchased ---- how do I DL?</description>
		<content:encoded><![CDATA[<p>I just purchased &#8212;- how do I DL?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Darrell</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-1004</link>
		<dc:creator>Darrell</dc:creator>
		<pubDate>Wed, 25 Jan 2012 16:22:16 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-1004</guid>
		<description>I purchased and downloaded the script. I&#039;m not great with code... more of a designer. After making changes to the script to connect to database I received the following error messages:

Just loading the page without doing anything i got this:
   Search Error
   Your keyword has to be at least two characters long!

I entered a search word ( item in database ) and I get this error message:
   Error in query: SELECT *, MATCH (product,brand) AGAINST (&#039;Samsung&#039;) AS    score FROM sample_db WHERE MATCH (product,brand) AGAINST (&#039;+Samsung&#039; IN BOOLEAN MODE) HAVING score &gt; 0.01 ORDER BY score DESC. Can&#039;t find FULLTEXT index matching the column list

Not sure what to do at this point. Please help.</description>
		<content:encoded><![CDATA[<p>I purchased and downloaded the script. I&#8217;m not great with code&#8230; more of a designer. After making changes to the script to connect to database I received the following error messages:</p>
<p>Just loading the page without doing anything i got this:<br />
   Search Error<br />
   Your keyword has to be at least two characters long!</p>
<p>I entered a search word ( item in database ) and I get this error message:<br />
   Error in query: SELECT *, MATCH (product,brand) AGAINST (&#8216;Samsung&#8217;) AS    score FROM sample_db WHERE MATCH (product,brand) AGAINST (&#8216;+Samsung&#8217; IN BOOLEAN MODE) HAVING score &gt; 0.01 ORDER BY score DESC. Can&#8217;t find FULLTEXT index matching the column list</p>
<p>Not sure what to do at this point. Please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Isaac</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-1003</link>
		<dc:creator>Isaac</dc:creator>
		<pubDate>Wed, 25 Jan 2012 12:05:15 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-1003</guid>
		<description>Am get the following errors please
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\search\search.php on line 48

Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\search\search.php on line 54
Couldn&#039;t execute query

Am waiting for the reply please</description>
		<content:encoded><![CDATA[<p>Am get the following errors please<br />
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\search\search.php on line 48</p>
<p>Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\search\search.php on line 54<br />
Couldn&#8217;t execute query</p>
<p>Am waiting for the reply please</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS Step by Step Menu (Wizard Style) by Matt Ruby</title>
		<link>http://www.emirplicanic.com/css/css-step-by-step-menu-wizard-style#comment-1002</link>
		<dc:creator>Matt Ruby</dc:creator>
		<pubDate>Tue, 24 Jan 2012 18:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.emirplicanic.com/?p=756#comment-1002</guid>
		<description>I found the solution on: http://css-tricks.com/snippets/css/css-triangle/

Use border-style of inset on the transparent borders</description>
		<content:encoded><![CDATA[<p>I found the solution on: <a href="http://css-tricks.com/snippets/css/css-triangle/" rel="nofollow">http://css-tricks.com/snippets/css/css-triangle/</a></p>
<p>Use border-style of inset on the transparent borders</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by paulo</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-1001</link>
		<dc:creator>paulo</dc:creator>
		<pubDate>Tue, 24 Jan 2012 03:51:04 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-1001</guid>
		<description>does some have the db table code for this php search script? the one that is on this page...

thank you...</description>
		<content:encoded><![CDATA[<p>does some have the db table code for this php search script? the one that is on this page&#8230;</p>
<p>thank you&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS Step by Step Menu (Wizard Style) by Matt Ruby</title>
		<link>http://www.emirplicanic.com/css/css-step-by-step-menu-wizard-style#comment-1000</link>
		<dc:creator>Matt Ruby</dc:creator>
		<pubDate>Mon, 23 Jan 2012 22:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.emirplicanic.com/?p=756#comment-1000</guid>
		<description>Thanks for posting this.  It&#039;s really helpful.  
Quick question, do you know how to remove the thin grey outline on the arrows?</description>
		<content:encoded><![CDATA[<p>Thanks for posting this.  It&#8217;s really helpful.<br />
Quick question, do you know how to remove the thin grey outline on the arrows?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by paulo</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-999</link>
		<dc:creator>paulo</dc:creator>
		<pubDate>Mon, 23 Jan 2012 00:19:30 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-999</guid>
		<description>Hi Dear,

how are you doing? I have been looking for php search bar for long, but all i have gotten is php script without database table code. Could you please give me this code? thank you so much....


Paulo</description>
		<content:encoded><![CDATA[<p>Hi Dear,</p>
<p>how are you doing? I have been looking for php search bar for long, but all i have gotten is php script without database table code. Could you please give me this code? thank you so much&#8230;.</p>
<p>Paulo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Gab</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-997</link>
		<dc:creator>Gab</dc:creator>
		<pubDate>Wed, 18 Jan 2012 13:11:03 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-997</guid>
		<description>Also, do we have the possibility to search from 2 or 3 tables ?</description>
		<content:encoded><![CDATA[<p>Also, do we have the possibility to search from 2 or 3 tables ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Gab</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-996</link>
		<dc:creator>Gab</dc:creator>
		<pubDate>Wed, 18 Jan 2012 13:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-996</guid>
		<description>Hi , 

I purchased the code today and i fill in all the required info (database and table credentials)  i uploaded the &quot;search-example.php&quot; and &quot;search.php&quot; online but i got an error when i fill in and submit the search field:

 Error in query: SELECT *, MATCH (items_name,items_pics) AGAINST (&#039;Vegetable&#039;) AS score FROM tbl_sinno_items WHERE MATCH (items_name,items_pics) AGAINST (&#039;+Vegetable&#039; IN BOOLEAN MODE) HAVING score &gt; 0.01 ORDER BY score DESC. Can&#039;t find FULLTEXT index matching the column list

please help. thanks!</description>
		<content:encoded><![CDATA[<p>Hi , </p>
<p>I purchased the code today and i fill in all the required info (database and table credentials)  i uploaded the &#8220;search-example.php&#8221; and &#8220;search.php&#8221; online but i got an error when i fill in and submit the search field:</p>
<p> Error in query: SELECT *, MATCH (items_name,items_pics) AGAINST (&#8216;Vegetable&#8217;) AS score FROM tbl_sinno_items WHERE MATCH (items_name,items_pics) AGAINST (&#8216;+Vegetable&#8217; IN BOOLEAN MODE) HAVING score &gt; 0.01 ORDER BY score DESC. Can&#8217;t find FULLTEXT index matching the column list</p>
<p>please help. thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Job guaranteed training in PHP</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-995</link>
		<dc:creator>Job guaranteed training in PHP</dc:creator>
		<pubDate>Mon, 16 Jan 2012 05:05:54 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-995</guid>
		<description>I am Extremely thanks full for the author for posting such as great post to us.</description>
		<content:encoded><![CDATA[<p>I am Extremely thanks full for the author for posting such as great post to us.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP visitor tracking script with jQuery and Raphael javascript library by Jesper</title>
		<link>http://www.emirplicanic.com/php/php-visitor-tracking-script-with-jquery-and-raphael-javascript-library#comment-994</link>
		<dc:creator>Jesper</dc:creator>
		<pubDate>Thu, 12 Jan 2012 16:53:32 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-visitor-tracking-script#comment-994</guid>
		<description>I have recently purchased and all works fine except if there is no data in the logger table. Is it possible to show the graf woth only zero hits if no records?</description>
		<content:encoded><![CDATA[<p>I have recently purchased and all works fine except if there is no data in the logger table. Is it possible to show the graf woth only zero hits if no records?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Scott Levy</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-993</link>
		<dc:creator>Scott Levy</dc:creator>
		<pubDate>Wed, 11 Jan 2012 12:53:54 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-993</guid>
		<description>Nice post. I found this blog with withbest practices for creating a search form that is quick and easy to use      http://blog.caspio.com/web-database/7-tips-for-creating-user-friendly-search-forms/</description>
		<content:encoded><![CDATA[<p>Nice post. I found this blog with withbest practices for creating a search form that is quick and easy to use      <a href="http://blog.caspio.com/web-database/7-tips-for-creating-user-friendly-search-forms/" rel="nofollow">http://blog.caspio.com/web-database/7-tips-for-creating-user-friendly-search-forms/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Rob</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-992</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Tue, 10 Jan 2012 03:02:08 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-992</guid>
		<description>I am getting the following error.  Any ideas why?

Undefined variable: row at /home/site/public_html/trade/class.login.php (107), timed at 09-Jan-2012 09:57:41

Array
(
   [logincode] =&gt; tenty23
   [user_table] =&gt; logon
   [pass_column] =&gt; password
   [user_column] =&gt; useremail
   [result] =&gt; Resource id #4
   [rownum] =&gt; 5
)</description>
		<content:encoded><![CDATA[<p>I am getting the following error.  Any ideas why?</p>
<p>Undefined variable: row at /home/site/public_html/trade/class.login.php (107), timed at 09-Jan-2012 09:57:41</p>
<p>Array<br />
(<br />
   [logincode] =&gt; tenty23<br />
   [user_table] =&gt; logon<br />
   [pass_column] =&gt; password<br />
   [user_column] =&gt; useremail<br />
   [result] =&gt; Resource id #4<br />
   [rownum] =&gt; 5<br />
)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Evan</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-991</link>
		<dc:creator>Evan</dc:creator>
		<pubDate>Tue, 10 Jan 2012 01:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-991</guid>
		<description>This is lame. 95 cents for the version that works? Why even post the script at the top of the page? it doesn&#039;t work without alteration.</description>
		<content:encoded><![CDATA[<p>This is lame. 95 cents for the version that works? Why even post the script at the top of the page? it doesn&#8217;t work without alteration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP class to get remote page title and description by Rajesh Namase</title>
		<link>http://www.emirplicanic.com/php/php-class-to-get-remote-page-title-and-description#comment-990</link>
		<dc:creator>Rajesh Namase</dc:creator>
		<pubDate>Mon, 09 Jan 2012 14:26:07 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/get-remote-page-title-with-php#comment-990</guid>
		<description>Really useful code, thanks for posting. I&#039;m taking this code as a reference for my SEO project.</description>
		<content:encoded><![CDATA[<p>Really useful code, thanks for posting. I&#8217;m taking this code as a reference for my SEO project.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS Step by Step Menu (Wizard Style) by Paul</title>
		<link>http://www.emirplicanic.com/css/css-step-by-step-menu-wizard-style#comment-989</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 06 Jan 2012 23:16:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.emirplicanic.com/?p=756#comment-989</guid>
		<description>Nice! How do you align the whole div () to the right? Can&#039;t get that to work, I wonder what I&#039;m doing wrong.

Thanks,</description>
		<content:encoded><![CDATA[<p>Nice! How do you align the whole div () to the right? Can&#8217;t get that to work, I wonder what I&#8217;m doing wrong.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by nick</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-988</link>
		<dc:creator>nick</dc:creator>
		<pubDate>Wed, 04 Jan 2012 20:13:31 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-988</guid>
		<description>i&#039;m working on a search engine for my website

i currently hold 2 major indexes, one is a pair value of words/word ids, and another pair values of product with word id.

currently the main index contains ~ 4 million pair values.

it takes my engine about 0.15-0.20 seconds to match against top 500-1000 results..
1.00-1.20 seconds to select 5000 or more results (up to 50,000 makes little difference)

my question is, how can I optimize SELECT to be more efficient? i want my queries to be no more than 0.25sec overall

first query finds the word id from the index in about 0.0004sec to 0.0005sec so it&#039;s not a problem even for multiple words. that&#039;s from a list of 260k

the problem comes in matching those word id&#039;s versus an index of dozens of millions of results

what do you think</description>
		<content:encoded><![CDATA[<p>i&#8217;m working on a search engine for my website</p>
<p>i currently hold 2 major indexes, one is a pair value of words/word ids, and another pair values of product with word id.</p>
<p>currently the main index contains ~ 4 million pair values.</p>
<p>it takes my engine about 0.15-0.20 seconds to match against top 500-1000 results..<br />
1.00-1.20 seconds to select 5000 or more results (up to 50,000 makes little difference)</p>
<p>my question is, how can I optimize SELECT to be more efficient? i want my queries to be no more than 0.25sec overall</p>
<p>first query finds the word id from the index in about 0.0004sec to 0.0005sec so it&#8217;s not a problem even for multiple words. that&#8217;s from a list of 260k</p>
<p>the problem comes in matching those word id&#8217;s versus an index of dozens of millions of results</p>
<p>what do you think</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Tommy</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-987</link>
		<dc:creator>Tommy</dc:creator>
		<pubDate>Wed, 04 Jan 2012 10:17:46 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-987</guid>
		<description>Dude... THANKYOU. You just saved me a good few hours. 

A site I&#039;m developing uses a CMS, but the admin area only relies on one user, and the username/password was read from a config file.

This was insanely easy to implement into the existing code.

Thanks!

Tom :-)</description>
		<content:encoded><![CDATA[<p>Dude&#8230; THANKYOU. You just saved me a good few hours. </p>
<p>A site I&#8217;m developing uses a CMS, but the admin area only relies on one user, and the username/password was read from a config file.</p>
<p>This was insanely easy to implement into the existing code.</p>
<p>Thanks!</p>
<p>Tom <img src='http://d17af1h00jafae.cloudfront.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS Step by Step Menu (Wizard Style) by Amar Sheriff</title>
		<link>http://www.emirplicanic.com/css/css-step-by-step-menu-wizard-style#comment-986</link>
		<dc:creator>Amar Sheriff</dc:creator>
		<pubDate>Tue, 03 Jan 2012 05:23:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.emirplicanic.com/?p=756#comment-986</guid>
		<description>HI eplicanic - I made the payment. Can you please send me the download link or send the sample to my email.. Thanks / Amar

Your transaction ID for this payment is: 7S638937W7160480T.</description>
		<content:encoded><![CDATA[<p>HI eplicanic &#8211; I made the payment. Can you please send me the download link or send the sample to my email.. Thanks / Amar</p>
<p>Your transaction ID for this payment is: 7S638937W7160480T.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UHits &#8211; PHP proxy hits generator by Show IP</title>
		<link>http://www.emirplicanic.com/php/uhits-php-proxy-hits-generator#comment-985</link>
		<dc:creator>Show IP</dc:creator>
		<pubDate>Sat, 31 Dec 2011 04:47:09 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/uhits-php-fake-hits-generator#comment-985</guid>
		<description>Code not working. Can someone help?</description>
		<content:encoded><![CDATA[<p>Code not working. Can someone help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI: Highlight multiple dates in jquery datepicker by lagrandeours</title>
		<link>http://www.emirplicanic.com/javascript/jquery-ui-highlight-multiple-dates-in-jquery-datepicker#comment-984</link>
		<dc:creator>lagrandeours</dc:creator>
		<pubDate>Thu, 29 Dec 2011 15:52:29 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/javascript/jquery-highlight-multiple-date#comment-984</guid>
		<description>hello
thnaks for your dowload,
how to enable multiSelect: 5 ?
thanks,</description>
		<content:encoded><![CDATA[<p>hello<br />
thnaks for your dowload,<br />
how to enable multiSelect: 5 ?<br />
thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dreamweaver: Alternating table row color with simple JavaScript and CSS by A</title>
		<link>http://www.emirplicanic.com/dreamweaver/dreamweaver-alternating-table-row-color-with-simple-javascript-and-css#comment-983</link>
		<dc:creator>A</dc:creator>
		<pubDate>Wed, 28 Dec 2011 14:04:01 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/dreamweaver/alternating-table-row-color#comment-983</guid>
		<description>Where is demo.</description>
		<content:encoded><![CDATA[<p>Where is demo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Zion</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-982</link>
		<dc:creator>Zion</dc:creator>
		<pubDate>Tue, 27 Dec 2011 00:35:36 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-982</guid>
		<description>Thank you For this Post, i will write my own script for this function but you have given me a good Starting point.

Also i read a few of the post&#039;s others made saying what you &quot;Should of done&quot; but i think you have done Great, thanks for the Script.</description>
		<content:encoded><![CDATA[<p>Thank you For this Post, i will write my own script for this function but you have given me a good Starting point.</p>
<p>Also i read a few of the post&#8217;s others made saying what you &#8220;Should of done&#8221; but i think you have done Great, thanks for the Script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by jovazel</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-981</link>
		<dc:creator>jovazel</dc:creator>
		<pubDate>Mon, 26 Dec 2011 06:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-981</guid>
		<description>can you send to me your sample codes sir. i really need searching code for my project. thanks in advance.</description>
		<content:encoded><![CDATA[<p>can you send to me your sample codes sir. i really need searching code for my project. thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read CSS files with PHP by Selase</title>
		<link>http://www.emirplicanic.com/php/read-css-files-with-php#comment-980</link>
		<dc:creator>Selase</dc:creator>
		<pubDate>Sun, 25 Dec 2011 06:50:18 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/read-css-files-with-php#comment-980</guid>
		<description>I have read through several of your blogs and i like them for their simple layout and how easy it is to understand even as a newbie. I will like to share on this particular topic, scenarios or conditions under which it will be useful to split a css file. I really want to know. Thank you</description>
		<content:encoded><![CDATA[<p>I have read through several of your blogs and i like them for their simple layout and how easy it is to understand even as a newbie. I will like to share on this particular topic, scenarios or conditions under which it will be useful to split a css file. I really want to know. Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read CSS files with PHP by yiqing95</title>
		<link>http://www.emirplicanic.com/php/read-css-files-with-php#comment-979</link>
		<dc:creator>yiqing95</dc:creator>
		<pubDate>Fri, 23 Dec 2011 03:57:02 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/read-css-files-with-php#comment-979</guid>
		<description>great work  , learn some useful skills   , thanks !</description>
		<content:encoded><![CDATA[<p>great work  , learn some useful skills   , thanks !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Basic access authentication application using xcode</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-978</link>
		<dc:creator>Basic access authentication application using xcode</dc:creator>
		<pubDate>Tue, 20 Dec 2011 10:43:14 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-978</guid>
		<description>[...] know is from the server side what i need to create is it a web application to handle this request ? like this Link can any one provide me with this information ? i don&#8217;t have experience in [...]</description>
		<content:encoded><![CDATA[<p>[...] know is from the server side what i need to create is it a web application to handle this request ? like this Link can any one provide me with this information ? i don&#8217;t have experience in [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Function to Generate HTML Table Using MySQL Database Data by Simon</title>
		<link>http://www.emirplicanic.com/php/php-function-to-generate-html-table-using-mysql-database-data#comment-977</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Tue, 20 Dec 2011 00:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-function-mysql-to-html#comment-977</guid>
		<description>I dont know how this work since i dont see how to make db conectio i try this example without success</description>
		<content:encoded><![CDATA[<p>I dont know how this work since i dont see how to make db conectio i try this example without success</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP A to Z sorting script by Dimitrios</title>
		<link>http://www.emirplicanic.com/php/php-a-to-z-sorting-script#comment-973</link>
		<dc:creator>Dimitrios</dc:creator>
		<pubDate>Mon, 12 Dec 2011 09:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-a-to-z-sorting-script#comment-973</guid>
		<description>Hi there ,
At first , I would say that your blog is a good place to stop for a while .
Though , this script isn&#039;t recommended for production environments .
My golden rules when working with PHP are :
1) Never use $_REQUEST super-globals --&gt; it&#039;s highly dependent on the configuration of your server&#039;s environment variables ( variables_order , register_globals ) . So in some cases your script my be vulnerable to script-kidies .
2) Always filter data that is provided from visitors . Nowadays a 15-year script-kidie can embed malicious code (Javascript) into your website that will &quot;disappoint &quot; your visitors . or ,  even crash your database . Fortunately PHP has a bunch of filter functions that defense your server against SQL-injection and CSSF - attacks . 
Well , I&#039;m not a security freak , but basic security measures should  be on the first lines of our priority list . 

Nice blog anyway , keep publishing articles ...</description>
		<content:encoded><![CDATA[<p>Hi there ,<br />
At first , I would say that your blog is a good place to stop for a while .<br />
Though , this script isn&#8217;t recommended for production environments .<br />
My golden rules when working with PHP are :<br />
1) Never use $_REQUEST super-globals &#8211;&gt; it&#8217;s highly dependent on the configuration of your server&#8217;s environment variables ( variables_order , register_globals ) . So in some cases your script my be vulnerable to script-kidies .<br />
2) Always filter data that is provided from visitors . Nowadays a 15-year script-kidie can embed malicious code (Javascript) into your website that will &#8220;disappoint &#8221; your visitors . or ,  even crash your database . Fortunately PHP has a bunch of filter functions that defense your server against SQL-injection and CSSF &#8211; attacks .<br />
Well , I&#8217;m not a security freak , but basic security measures should  be on the first lines of our priority list . </p>
<p>Nice blog anyway , keep publishing articles &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI: Highlight multiple dates in jquery datepicker by bhaskar</title>
		<link>http://www.emirplicanic.com/javascript/jquery-ui-highlight-multiple-dates-in-jquery-datepicker#comment-972</link>
		<dc:creator>bhaskar</dc:creator>
		<pubDate>Fri, 09 Dec 2011 09:33:46 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/javascript/jquery-highlight-multiple-date#comment-972</guid>
		<description>nice post .it was helped to me
Thank u</description>
		<content:encoded><![CDATA[<p>nice post .it was helped to me<br />
Thank u</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Jesse Z</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-971</link>
		<dc:creator>Jesse Z</dc:creator>
		<pubDate>Tue, 06 Dec 2011 23:14:08 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-971</guid>
		<description>Emir, this is great - just what I&#039;ve been looking for. My only request would be adding the account creation form + code to insert the new user into the database. I know you are away, so I&#039;m going to attempt to write this. If I get a decent version done I&#039;ll send it to you.</description>
		<content:encoded><![CDATA[<p>Emir, this is great &#8211; just what I&#8217;ve been looking for. My only request would be adding the account creation form + code to insert the new user into the database. I know you are away, so I&#8217;m going to attempt to write this. If I get a decent version done I&#8217;ll send it to you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP visitor tracking script with jQuery and Raphael javascript library by Tartoob</title>
		<link>http://www.emirplicanic.com/php/php-visitor-tracking-script-with-jquery-and-raphael-javascript-library#comment-970</link>
		<dc:creator>Tartoob</dc:creator>
		<pubDate>Tue, 06 Dec 2011 21:40:18 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-visitor-tracking-script#comment-970</guid>
		<description>How can I use it for more than one page and one view

And also how can I change the view for a year ?</description>
		<content:encoded><![CDATA[<p>How can I use it for more than one page and one view</p>
<p>And also how can I change the view for a year ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a Scrolling Text Box using JavaScript by Syrian Sniper</title>
		<link>http://www.emirplicanic.com/javascript/create-a-scrolling-text-box-using-javascript#comment-969</link>
		<dc:creator>Syrian Sniper</dc:creator>
		<pubDate>Mon, 05 Dec 2011 10:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/javascript/javascript-scrolling-text#comment-969</guid>
		<description>Great, I Appreciate you effort</description>
		<content:encoded><![CDATA[<p>Great, I Appreciate you effort</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP visitor tracking script with jQuery and Raphael javascript library by farfaj</title>
		<link>http://www.emirplicanic.com/php/php-visitor-tracking-script-with-jquery-and-raphael-javascript-library#comment-968</link>
		<dc:creator>farfaj</dc:creator>
		<pubDate>Sun, 04 Dec 2011 22:46:05 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-visitor-tracking-script#comment-968</guid>
		<description>Hi


I have a small problem, in the &#039;visitedpage&#039; field in the database the value is &#039;&#039; all the time, and in the &#039;referring&#039; field the value is &#039;&lt;?php echo urlencode($_SERVER[&#039; all the time.

Please help</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>I have a small problem, in the &#8216;visitedpage&#8217; field in the database the value is &#8221; all the time, and in the &#8216;referring&#8217; field the value is &#8216;&lt;?php echo urlencode($_SERVER[&#039; all the time.</p>
<p>Please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Function to Generate HTML Table Using MySQL Database Data by ramesh</title>
		<link>http://www.emirplicanic.com/php/php-function-to-generate-html-table-using-mysql-database-data#comment-967</link>
		<dc:creator>ramesh</dc:creator>
		<pubDate>Mon, 28 Nov 2011 07:52:36 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-function-mysql-to-html#comment-967</guid>
		<description>good one, realy hepfull for beginers like me</description>
		<content:encoded><![CDATA[<p>good one, realy hepfull for beginers like me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by eplicanic</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-966</link>
		<dc:creator>eplicanic</dc:creator>
		<pubDate>Sat, 26 Nov 2011 00:56:40 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-966</guid>
		<description>Sure! As long as you give a credit where a credit is due. Good karma never hurt anyone ;)</description>
		<content:encoded><![CDATA[<p>Sure! As long as you give a credit where a credit is due. Good karma never hurt anyone <img src='http://d17af1h00jafae.cloudfront.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Gila</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-965</link>
		<dc:creator>Gila</dc:creator>
		<pubDate>Fri, 25 Nov 2011 17:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-965</guid>
		<description>Is it open source code? Can I take it and use it and update it?</description>
		<content:encoded><![CDATA[<p>Is it open source code? Can I take it and use it and update it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UHits &#8211; PHP proxy hits generator by Jessica</title>
		<link>http://www.emirplicanic.com/php/uhits-php-proxy-hits-generator#comment-963</link>
		<dc:creator>Jessica</dc:creator>
		<pubDate>Thu, 24 Nov 2011 21:08:41 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/uhits-php-fake-hits-generator#comment-963</guid>
		<description>Thank you for the scripts !!!!

Jess.</description>
		<content:encoded><![CDATA[<p>Thank you for the scripts !!!!</p>
<p>Jess.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UHits &#8211; PHP proxy hits generator by Nadia</title>
		<link>http://www.emirplicanic.com/php/uhits-php-proxy-hits-generator#comment-962</link>
		<dc:creator>Nadia</dc:creator>
		<pubDate>Thu, 24 Nov 2011 21:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/uhits-php-fake-hits-generator#comment-962</guid>
		<description>Ok, I´ll try it out,

Regards,

Nadia,</description>
		<content:encoded><![CDATA[<p>Ok, I´ll try it out,</p>
<p>Regards,</p>
<p>Nadia,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UHits &#8211; PHP proxy hits generator by Gunnar</title>
		<link>http://www.emirplicanic.com/php/uhits-php-proxy-hits-generator#comment-961</link>
		<dc:creator>Gunnar</dc:creator>
		<pubDate>Thu, 24 Nov 2011 21:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/uhits-php-fake-hits-generator#comment-961</guid>
		<description>Thanks !!!</description>
		<content:encoded><![CDATA[<p>Thanks !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP visitor tracking script with jQuery and Raphael javascript library by cosmo</title>
		<link>http://www.emirplicanic.com/php/php-visitor-tracking-script-with-jquery-and-raphael-javascript-library#comment-960</link>
		<dc:creator>cosmo</dc:creator>
		<pubDate>Wed, 23 Nov 2011 22:52:37 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-visitor-tracking-script#comment-960</guid>
		<description>OK this is not working for me at all. I don&#039;t get any stats. Nothing displays apart from the table. I have sample data in the database. What is the problem?

Please help!</description>
		<content:encoded><![CDATA[<p>OK this is not working for me at all. I don&#8217;t get any stats. Nothing displays apart from the table. I have sample data in the database. What is the problem?</p>
<p>Please help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by Ross Ackland</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-959</link>
		<dc:creator>Ross Ackland</dc:creator>
		<pubDate>Wed, 23 Nov 2011 00:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-959</guid>
		<description>Hi, only thing missing is a method to create a **new** user.</description>
		<content:encoded><![CDATA[<p>Hi, only thing missing is a method to create a **new** user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by eric</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-958</link>
		<dc:creator>eric</dc:creator>
		<pubDate>Tue, 22 Nov 2011 04:43:06 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-958</guid>
		<description>Just ran this SQL to manually fix the index issue

 ALTER TABLE table_name ADD FULLTEXT name_of_index(field1,field2,field3);

also</description>
		<content:encoded><![CDATA[<p>Just ran this SQL to manually fix the index issue</p>
<p> ALTER TABLE table_name ADD FULLTEXT name_of_index(field1,field2,field3);</p>
<p>also</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by eric</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-957</link>
		<dc:creator>eric</dc:creator>
		<pubDate>Tue, 22 Nov 2011 04:41:26 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-957</guid>
		<description>I had the same issue then I noticed on line 117  you need to update the &quot;news_id&quot; value if your table uses something else for example I did not get any search results until I updated the &quot;news_id&quot; value to &quot;ID&quot; since that was the primary key for my table

do{
	  $adid_array[] = $row[ &#039;news_id&#039; ];
	}while( $row= mysql_fetch_array($numresults));
}

Hope that helps 

Eric</description>
		<content:encoded><![CDATA[<p>I had the same issue then I noticed on line 117  you need to update the &#8220;news_id&#8221; value if your table uses something else for example I did not get any search results until I updated the &#8220;news_id&#8221; value to &#8220;ID&#8221; since that was the primary key for my table</p>
<p>do{<br />
	  $adid_array[] = $row[ 'news_id' ];<br />
	}while( $row= mysql_fetch_array($numresults));<br />
}</p>
<p>Hope that helps </p>
<p>Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS Step by Step Menu (Wizard Style) by Roger Mori</title>
		<link>http://www.emirplicanic.com/css/css-step-by-step-menu-wizard-style#comment-956</link>
		<dc:creator>Roger Mori</dc:creator>
		<pubDate>Mon, 21 Nov 2011 20:24:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.emirplicanic.com/?p=756#comment-956</guid>
		<description>From the downloaded code the menu works fine, but from the application the arrows are not showing up.

My application is set to run in IE7 compatibitlity mode.

Any ideas?

Please advise.</description>
		<content:encoded><![CDATA[<p>From the downloaded code the menu works fine, but from the application the arrows are not showing up.</p>
<p>My application is set to run in IE7 compatibitlity mode.</p>
<p>Any ideas?</p>
<p>Please advise.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by steve</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-953</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Fri, 18 Nov 2011 14:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-953</guid>
		<description>can i integrate this into phpbb3 or wordpress?</description>
		<content:encoded><![CDATA[<p>can i integrate this into phpbb3 or wordpress?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Write Smarter HTML &amp; CSS by Vivek</title>
		<link>http://www.emirplicanic.com/css/write-smarter-html-css#comment-952</link>
		<dc:creator>Vivek</dc:creator>
		<pubDate>Wed, 16 Nov 2011 06:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.emirplicanic.com/?p=725#comment-952</guid>
		<description>Nice tips! Thanks..</description>
		<content:encoded><![CDATA[<p>Nice tips! Thanks..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Mike Hickcox</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-951</link>
		<dc:creator>Mike Hickcox</dc:creator>
		<pubDate>Tue, 15 Nov 2011 14:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-951</guid>
		<description>I&#039;m trying to find a script I can use to query 3 fields in a database with keywords, and then print out selected fields from all those records that match.

Can this script be adapted to do that?

Thanks.</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to find a script I can use to query 3 fields in a database with keywords, and then print out selected fields from all those records that match.</p>
<p>Can this script be adapted to do that?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by Nilpo</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-950</link>
		<dc:creator>Nilpo</dc:creator>
		<pubDate>Mon, 14 Nov 2011 18:13:20 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-950</guid>
		<description>You really should mention that this script works most effectively on databases that use FULLTEXT indexing.  There is a redundant fallback using LIKE, but that could be very, very slow depending upon the size and nature of the dataset.

As a general rule of thumb, database-driven search engines work best with properly indexed, properly rationalized databases.</description>
		<content:encoded><![CDATA[<p>You really should mention that this script works most effectively on databases that use FULLTEXT indexing.  There is a redundant fallback using LIKE, but that could be very, very slow depending upon the size and nature of the dataset.</p>
<p>As a general rule of thumb, database-driven search engines work best with properly indexed, properly rationalized databases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by eplicanic</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-949</link>
		<dc:creator>eplicanic</dc:creator>
		<pubDate>Sat, 12 Nov 2011 11:58:36 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-949</guid>
		<description>A table column &quot;userlevel&quot; stores that info. What you need to add is the code that sends users to their level pages. Sorry I can&#039;t be more helpful and for the late response! I&#039;m on the road riding my bicycle across the US (http://theuntour.com)</description>
		<content:encoded><![CDATA[<p>A table column &#8220;userlevel&#8221; stores that info. What you need to add is the code that sends users to their level pages. Sorry I can&#8217;t be more helpful and for the late response! I&#8217;m on the road riding my bicycle across the US (<a href="http://theuntour.com" rel="nofollow">http://theuntour.com</a>)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by John</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-947</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sat, 12 Nov 2011 05:10:56 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-947</guid>
		<description>emir please answer my question if the script can support access level. thanks</description>
		<content:encoded><![CDATA[<p>emir please answer my question if the script can support access level. thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple PHP/MySQL authentication/login class by John</title>
		<link>http://www.emirplicanic.com/php/simple-phpmysql-authentication-class#comment-946</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 11 Nov 2011 15:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/simple-php-login-class#comment-946</guid>
		<description>I like your authentication and im buying it soon. i would like to ask if i can enable access level? let say i have a page where i cant a level 2 access then another page that need a level 4 as admin. can i do that in your script? thanks a lot.</description>
		<content:encoded><![CDATA[<p>I like your authentication and im buying it soon. i would like to ask if i can enable access level? let say i have a page where i cant a level 2 access then another page that need a level 4 as admin. can i do that in your script? thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UHits &#8211; PHP proxy hits generator by wedding planner india</title>
		<link>http://www.emirplicanic.com/php/uhits-php-proxy-hits-generator#comment-944</link>
		<dc:creator>wedding planner india</dc:creator>
		<pubDate>Thu, 10 Nov 2011 12:41:54 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/uhits-php-fake-hits-generator#comment-944</guid>
		<description>your 
proxy php is good.</description>
		<content:encoded><![CDATA[<p>your<br />
proxy php is good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/MySQL search engine script by rajesh</title>
		<link>http://www.emirplicanic.com/php/php-mysql-search-script#comment-930</link>
		<dc:creator>rajesh</dc:creator>
		<pubDate>Tue, 08 Nov 2011 08:30:41 +0000</pubDate>
		<guid isPermaLink="false">http://emirplicanic.com/php/php-mysql-search-script#comment-930</guid>
		<description>erros are :(

Notice: Undefined index: q in C:\wamp\www\my_ipl_mania\search.php on line 2

Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\wamp\www\my_ipl_mania\search.php on line 59

 Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\wamp\www\my_ipl_mania\search.php on line 65

i need a code with serach box:(
very urgent:(</description>
		<content:encoded><![CDATA[<p>erros are <img src='http://d17af1h00jafae.cloudfront.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Notice: Undefined index: q in C:\wamp\www\my_ipl_mania\search.php on line 2</p>
<p>Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\wamp\www\my_ipl_mania\search.php on line 59</p>
<p> Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\wamp\www\my_ipl_mania\search.php on line 65</p>
<p>i need a code with serach box:(<br />
very urgent:(</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic
Content Delivery Network via Amazon Web Services: CloudFront: d17af1h00jafae.cloudfront.net

Served from: www.emirplicanic.com @ 2012-02-22 12:19:48 -->
