<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Search engine script &#187; /music</title>
	<atom:link href="http://searchenginescript.biz/tag/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://searchenginescript.biz</link>
	<description></description>
	<lastBuildDate>Tue, 22 May 2012 07:10:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>HOW TO CREATE A PHP SEARCH ENGINE TO SEARCH SONGS IN MY /MUSIC DIRECTORY? A SIMPLE ONE INDEED IS WHAT I WANT.?</title>
		<link>http://searchenginescript.biz/how-to-create-a-php-search-engine-to-search-songs-in-my-music-directory-a-simple-one-indeed-is-what-i-want-2/</link>
		<comments>http://searchenginescript.biz/how-to-create-a-php-search-engine-to-search-songs-in-my-music-directory-a-simple-one-indeed-is-what-i-want-2/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 00:08:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[/music]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[Indeed]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[songs]]></category>
		<category><![CDATA[want]]></category>

		<guid isPermaLink="false">http://searchenginescript.biz/how-to-create-a-php-search-engine-to-search-songs-in-my-music-directory-a-simple-one-indeed-is-what-i-want-2/</guid>
		<description><![CDATA[Question by (ƸӜƷ): How to create a PHP search engine to search songs in my /music directory? A easy one indeed is what I want.? &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Answer by glad.romance]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by (ƸӜƷ)</i>: <br />How to create a PHP search engine to search songs in my /music directory? A easy one indeed is what I want.?</strong></p>
<p><span id="more-1604"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by glad.romance</i><br/><?<br />
//This is only displayed if they have submitted the form<br />
if ($  searching =="yes")<br />
{<br />
echo "<br />
<h2>Results</h2>
<p>&#8220;;</p>
<p>//If they did not enter a search term we give them an error<br />
if ($  find == &#8220;&#8221;)<br />
{<br />
echo &#8220;
<p>You forgot to enter a search term&#8221;;<br />
exit;<br />
}</p>
<p>// Otherwise we connect to our Database<br />
mysql_connect(&#8220;mysql.yourhost.com&#8221;, &#8220;user_name&#8221;, &#8220;password&#8221;) or die(mysql_error());<br />
mysql_select_db(&#8220;database_name&#8221;) or die(mysql_error());</p>
<p>// We preform a bit of filtering<br />
$  find = strtoupper($  find);<br />
$  find = strip_tags($  find);<br />
$  find = trim ($  find);</p>
<p>//Now we search for our search term, in the field the user specified<br />
$  data = mysql_query(&#8220;SELECT * FROM users WHERE upper($  field) LIKE&#8217;%$  find%&#8217;&#8221;);</p>
<p>//And we display the results<br />
while($  result = mysql_fetch_array( $  data ))<br />
{<br />
echo $  result['fname'];<br />
echo &#8221; &#8220;;<br />
echo $  result['lname'];<br />
echo &#8220;<br />&#8220;;<br />
echo $  result['info'];<br />
echo &#8220;<br />&#8220;;<br />
echo &#8220;<br />&#8220;;<br />
}</p>
<p>//This counts the number or results &#8211; and if there was not any it gives them a tiny message explaining that<br />
$  anymatches=mysql_num_rows($  data);<br />
if ($  anymatches == 0)<br />
{<br />
echo &#8220;Sorry, but we can not find an entry to match your query</p>
<p>&#8220;;<br />
}</p>
<p>//And we remind them what they searched for<br />
echo &#8220;<b>Searched For:</b> &#8221; .$  find;<br />
}<br />
?> </p>
<p>Notice the LIKE&#8217;%$  find% << --- this is used to search in SQL </p>
<p>$  data = mysql_query("SELECT * FROM users WHERE upper($  field) LIKE'%$  find%'")</p>
<p>This code actually does the searching. We are choosing all the data from our table WHERE the the field they select is LIKE their search string. We use upper () here to search the uppercase version of the fields.   We also use the '%' percentage on either side of our $  find variable to indicate that we are not looking solely for that term but rather that term possibly contained in a body of text.</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>What do you think? Answer below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://searchenginescript.biz/how-to-create-a-php-search-engine-to-search-songs-in-my-music-directory-a-simple-one-indeed-is-what-i-want-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IS ANYONE HAVING PROBLEMS WITH THE YAHOO MUSIC ENGINE AT THE MOMENT?</title>
		<link>http://searchenginescript.biz/is-anyone-having-problems-with-the-yahoo-music-engine-at-the-moment-2/</link>
		<comments>http://searchenginescript.biz/is-anyone-having-problems-with-the-yahoo-music-engine-at-the-moment-2/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 16:09:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[/music]]></category>
		<category><![CDATA[Anyone]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[having]]></category>
		<category><![CDATA[moment]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://searchenginescript.biz/is-anyone-having-problems-with-the-yahoo-music-engine-at-the-moment-2/</guid>
		<description><![CDATA[Question by Simon: Is anyone having problems with the Yahoo Music Engine at the moment? I&#8217;ve been trying to get the Yahoo! Music Engine to run, but I keep getting errors. It was working fine earlier today, but now I get errors abou8t scripts not being able to run and none of the search functionality]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by Simon</i>: <br />Is anyone having problems with the Yahoo Music Engine at the moment?</strong><br />
I&#8217;ve been trying to get the Yahoo! Music Engine to run, but I keep getting errors. It was working fine earlier today, but now I get errors abou8t scripts not being able to run and none of the search functionality works.</p>
<p>Is anyone else having this problem or know how to fix it?</p>
<p><span id="more-1572"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by captivating_enslavement_within</i><br/>As I have stated before I am having problems editing and viewing my profile, I know that this is not the same problem but probably just one of yahoo&#8217;s gliches,most likely will work in the future as well</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Add your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://searchenginescript.biz/is-anyone-having-problems-with-the-yahoo-music-engine-at-the-moment-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WHAT&#8217;S THE BEST WEB DESIGN SOFTWARE TO BUILD AN ONLINE MUSIC STORE?</title>
		<link>http://searchenginescript.biz/whats-the-best-web-design-software-to-build-an-online-music-store/</link>
		<comments>http://searchenginescript.biz/whats-the-best-web-design-software-to-build-an-online-music-store/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 18:38:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[/music]]></category>
		<category><![CDATA[best]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[store]]></category>
		<category><![CDATA[What's]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;m looking for software that has more bang for the buck. I need web design software that has the following; 1) Search Engine Optimization 2) Database Shopping Cart 3) Import/Export databases 4) Web Storefront Software tools 5) Retail, Wholesale at once. Please let me know? Thanks!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m looking for software that has more bang for the buck.  I need web design software that has the following; 1) Search Engine Optimization 2) Database Shopping Cart 3) Import/Export databases 4) Web Storefront Software tools 5) Retail, Wholesale at once.  Please let me know? Thanks!</p>
<p><span id="more-849"></span><!-- pingbacker_start --><!-- pingbacker_end --></p>
]]></content:encoded>
			<wfw:commentRss>http://searchenginescript.biz/whats-the-best-web-design-software-to-build-an-online-music-store/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>IS ANYONE HAVING PROBLEMS WITH THE YAHOO MUSIC ENGINE AT THE MOMENT?</title>
		<link>http://searchenginescript.biz/is-anyone-having-problems-with-the-yahoo-music-engine-at-the-moment/</link>
		<comments>http://searchenginescript.biz/is-anyone-having-problems-with-the-yahoo-music-engine-at-the-moment/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 06:22:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[/music]]></category>
		<category><![CDATA[Anyone]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[having]]></category>
		<category><![CDATA[moment]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;ve been trying to get the Yahoo! Music Engine to run, but I keep getting errors. It was working fine earlier today, but now I get errors abou8t scripts not being able to run and none of the search functionality works. Is anyone else having this problem or know how to fix it?]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to get the Yahoo! Music Engine to run, but I keep getting errors. It was working fine earlier today, but now I get errors abou8t scripts not being able to run and none of the search functionality works.</p>
<p>Is anyone else having this problem or know how to fix it?</p>
<p><span id="more-654"></span><!-- pingbacker_start --><!-- pingbacker_end --></p>
]]></content:encoded>
			<wfw:commentRss>http://searchenginescript.biz/is-anyone-having-problems-with-the-yahoo-music-engine-at-the-moment/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>HOW TO CREATE A PHP SEARCH ENGINE TO SEARCH SONGS IN MY /MUSIC DIRECTORY? A SIMPLE ONE INDEED IS WHAT I WANT.?</title>
		<link>http://searchenginescript.biz/how-to-create-a-php-search-engine-to-search-songs-in-my-music-directory-a-simple-one-indeed-is-what-i-want/</link>
		<comments>http://searchenginescript.biz/how-to-create-a-php-search-engine-to-search-songs-in-my-music-directory-a-simple-one-indeed-is-what-i-want/#comments</comments>
		<pubDate>Sun, 09 May 2010 18:38:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[/music]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[Indeed]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[songs]]></category>
		<category><![CDATA[want]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><span id="more-424"></span><!-- pingbacker_start --><!-- pingbacker_end --></p>
]]></content:encoded>
			<wfw:commentRss>http://searchenginescript.biz/how-to-create-a-php-search-engine-to-search-songs-in-my-music-directory-a-simple-one-indeed-is-what-i-want/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

