Jump to content

[SOLVED] Database search


_absurd

Recommended Posts

Been working on this for the better part of the morning. Still can't figure it out. Feel free to criticize anything. Namely though, line 19 and 30 are the ones that are giving me a headache.

 

$_GET['q'] = $q;
$_GET['what'] = $what;

if (!$q) { stop ('<h3>Error: missing parameter.</h3>'); }
if (!$what) { stop ('<h3>Error: missing parameter.</h3>'); }

echo '<h1>Search Results</h1>';
echo '<b>Note:</b> Do not use wildcards (*, etc). Maximum number of results is always 25.<hr />';
echo ''.$q.'';
if ($what == 'artist')
{

$num = 0;
while ($myrow = mysql_fetch_array (mysql_query ('SELECT * from `artists` WHERE `artistname` LIKE '.$q.' LIMIT 0,25')))
{
	echo '<br /><br />';
	echo ''.$num.': <a href="artist.php?id='.$myrow['artistid'].'">'.$myrow['artistname'].'</a><br /><br />';
	$num++;
}
}
if ($what == 'album')
{
$q = '%'.str_replace(' ','%',$q).'%';
$num = 0;
while ($myrow = mysql_fetch_array (mysql_query ('SELECT * from `albums` WHERE `albumname` LIKE '.$q.' LIMIT 0,25')))
{
	echo '<br /><br />';
	echo ''.$num.': <a href="album.php?id='.$myrow['albumid'].'">'.$myrow['albumname'].'</a><br /><br />';
	$num++;
}
}

Link to comment
Share on other sites

Tried that:

 

$_GET['q'] = $q;
$_GET['what'] = $what;

if (!$q) { stop ('<h3>Error: missing parameter.</h3>'); }
if (!$what) { stop ('<h3>Error: missing parameter.</h3>'); }

echo '<h1>Search Results</h1>';
echo '<b>Note:</b> Do not use wildcards (*, etc). Maximum number of results is always 25.<hr />';
if ($what == 'artist')
{
$q = '%'.str_replace(' ','%',$q).'%';
$sql = 'SELECT * from `artists` WHERE `artistname` LIKE '.$q.' LIMIT 0,25';
$result = mysql_query($sql);
$num = 0;
while ($myrow = mysql_fetch_array($result))
{
	echo '<br /><br />';
	echo ''.$num.': <a href="artist.php?id='.$myrow['artistid'].'">'.$myrow['artistname'].'</a><br /><br />';
	$num++;
}
}
if ($what == 'album')
{
$q = '%'.str_replace(' ','%',$q).'%';
$sql = 'SELECT * from `albums` WHERE `albumname` LIKE '.$q.' LIMIT 0,25';
$result = mysql_query($sql);
$num = 0;
while ($myrow = mysql_fetch_array($result))
{
	echo '<br /><br />';
	echo ''.$num.': <a href="album.php?id='.$myrow['albumid'].'">'.$myrow['albumname'].'</a><br /><br />';
	$num++;
}
}

 

Still no luck :(

 

The error is:

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/hell/public_html/search.php on line __

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.